-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TAN-3184] Configure cookie rotation for SHA1 to SHA256 migration
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# This initializer sets up cookie rotation to ensure a smooth transition from SHA1 to SHA256, | ||
# which is the hash algorithm used by default by the key generator digest class in Rails 7.0. | ||
# For more information, refer to the Rails 7.0 upgrade guide: | ||
# https://guides.rubyonrails.org/upgrading_ruby_on_rails.html#key-generator-digest-class-changing-to-use-sha256 | ||
|
||
Rails.application.config.after_initialize do | ||
Rails.application.config.action_dispatch.cookies_rotations.tap do |cookies| | ||
authenticated_encrypted_cookie_salt = Rails.application.config.action_dispatch.authenticated_encrypted_cookie_salt | ||
signed_cookie_salt = Rails.application.config.action_dispatch.signed_cookie_salt | ||
|
||
secret_key_base = Rails.application.secret_key_base | ||
|
||
key_generator = ActiveSupport::KeyGenerator.new( | ||
secret_key_base, iterations: 1000, hash_digest_class: OpenSSL::Digest::SHA1 | ||
) | ||
|
||
key_len = ActiveSupport::MessageEncryptor.key_len | ||
|
||
old_encrypted_secret = key_generator.generate_key(authenticated_encrypted_cookie_salt, key_len) | ||
old_signed_secret = key_generator.generate_key(signed_cookie_salt) | ||
|
||
cookies.rotate :encrypted, old_encrypted_secret | ||
cookies.rotate :signed, old_signed_secret | ||
end | ||
end |