diff options
author | Yuji Yaginuma <yuuji.yaginuma@gmail.com> | 2018-06-21 07:28:44 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-21 07:28:44 +0900 |
commit | 59984a3cea6d4ade34c3df3097fdd1d9ab26bf65 (patch) | |
tree | a271d869539e3eb7340922646de1a33dd4270cb5 | |
parent | 94360451eae2701fc04d6b132c44d9622bbe0cb5 (diff) | |
parent | f5093c2b1df5d3cdd7d2849f0b3d4fc7cf841cd5 (diff) | |
download | rails-59984a3cea6d4ade34c3df3097fdd1d9ab26bf65.tar.gz rails-59984a3cea6d4ade34c3df3097fdd1d9ab26bf65.tar.bz2 rails-59984a3cea6d4ade34c3df3097fdd1d9ab26bf65.zip |
Merge pull request #33172 from thomasdziedzic-pd/add-use_authenticated_message_encryption-documentation
add documentation for config.active_support.use_authenticated_message_encryption
-rw-r--r-- | guides/source/configuring.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 6b634028c4..e89909b614 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -707,6 +707,8 @@ There are a few configuration options available in Active Support: * `config.active_support.use_sha1_digests` specifies whether to use SHA-1 instead of MD5 to generate non-sensitive digests, such as the ETag header. Defaults to false. +* `config.active_support.use_authenticated_message_encryption` specifies whether to use AES-256-GCM authenticated encryption as the default cipher for encrypting messages instead of AES-256-CBC. This is false by default, but enabled when loading defaults for Rails 5.2. + * `ActiveSupport::Logger.silencer` is set to `false` to disable the ability to silence logging in a block. The default is `true`. * `ActiveSupport::Cache::Store.logger` specifies the logger to use within cache store operations. |