Class: ActiveSupport::MessageEncryptor
- Defined in:
- lib/active_support/message_encryptor.rb
Overview
MessageEncryptor is a simple way to encrypt values which get stored somewhere you don’t trust.
The cipher text and initialization vector are base64 encoded and returned to you.
This can be used in situations similar to the MessageVerifier
, but where you don’t want users to be able to determine the value of the payload.
Defined Under Namespace
Modules: NullSerializer Classes: InvalidMessage
Constant Summary collapse
- OpenSSLCipherError =
OpenSSL::Cipher.const_defined?(:CipherError) ? OpenSSL::Cipher::CipherError : OpenSSL::CipherError
Instance Method Summary collapse
- #decrypt(value) ⇒ Object
-
#decrypt_and_verify(value) ⇒ Object
Decrypt and verify a message.
- #encrypt(value) ⇒ Object
-
#encrypt_and_sign(value) ⇒ Object
Encrypt and sign a message.
-
#initialize(secret, options = {}) ⇒ MessageEncryptor
constructor
A new instance of MessageEncryptor.
Constructor Details
#initialize(secret, options = {}) ⇒ MessageEncryptor
Returns a new instance of MessageEncryptor.
26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/active_support/message_encryptor.rb', line 26 def initialize(secret, = {}) unless .is_a?(Hash) ActiveSupport::Deprecation.warn "The second parameter should be an options hash. Use :cipher => 'algorithm' to specify the cipher algorithm." = { :cipher => } end @secret = secret @cipher = [:cipher] || 'aes-256-cbc' @verifier = MessageVerifier.new(@secret, :serializer => NullSerializer) @serializer = [:serializer] || Marshal end |
Instance Method Details
#decrypt(value) ⇒ Object
44 45 46 47 48 |
# File 'lib/active_support/message_encryptor.rb', line 44 def decrypt(value) ActiveSupport::Deprecation.warn "MessageEncryptor#decrypt is deprecated as it is not safe without a signature. " \ "Please use MessageEncryptor#decrypt_and_verify instead." _decrypt(value) end |
#decrypt_and_verify(value) ⇒ Object
Decrypt and verify a message. We need to verify the message in order to avoid padding attacks. Reference: www.limited-entropy.com/padding-oracle-attacks
58 59 60 |
# File 'lib/active_support/message_encryptor.rb', line 58 def decrypt_and_verify(value) _decrypt(verifier.verify(value)) end |
#encrypt(value) ⇒ Object
38 39 40 41 42 |
# File 'lib/active_support/message_encryptor.rb', line 38 def encrypt(value) ActiveSupport::Deprecation.warn "MessageEncryptor#encrypt is deprecated as it is not safe without a signature. " \ "Please use MessageEncryptor#encrypt_and_sign instead." _encrypt(value) end |
#encrypt_and_sign(value) ⇒ Object
Encrypt and sign a message. We need to sign the message in order to avoid padding attacks. Reference: www.limited-entropy.com/padding-oracle-attacks
52 53 54 |
# File 'lib/active_support/message_encryptor.rb', line 52 def encrypt_and_sign(value) verifier.generate(_encrypt(value)) end |