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
Classes: InvalidMessage
Constant Summary collapse
- OpenSSLCipherError =
OpenSSL::Cipher.const_defined?(:CipherError) ? OpenSSL::Cipher::CipherError : OpenSSL::CipherError
Instance Method Summary collapse
- #decrypt(encrypted_message) ⇒ Object
- #decrypt_and_verify(value) ⇒ Object
- #encrypt(value) ⇒ Object
- #encrypt_and_sign(value) ⇒ Object
-
#initialize(secret, cipher = 'aes-256-cbc') ⇒ MessageEncryptor
constructor
A new instance of MessageEncryptor.
Constructor Details
#initialize(secret, cipher = 'aes-256-cbc') ⇒ MessageEncryptor
Returns a new instance of MessageEncryptor.
15 16 17 18 |
# File 'lib/active_support/message_encryptor.rb', line 15 def initialize(secret, cipher = 'aes-256-cbc') @secret = secret @cipher = cipher end |
Instance Method Details
#decrypt(encrypted_message) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'lib/active_support/message_encryptor.rb', line 35 def decrypt() cipher = new_cipher encrypted_data, iv = .split("--").map {|v| ActiveSupport::Base64.decode64(v)} cipher.decrypt cipher.key = @secret cipher.iv = iv decrypted_data = cipher.update(encrypted_data) decrypted_data << cipher.final Marshal.load(decrypted_data) rescue OpenSSLCipherError, TypeError raise InvalidMessage end |
#decrypt_and_verify(value) ⇒ Object
55 56 57 |
# File 'lib/active_support/message_encryptor.rb', line 55 def decrypt_and_verify(value) decrypt(verifier.verify(value)) end |
#encrypt(value) ⇒ Object
20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/active_support/message_encryptor.rb', line 20 def encrypt(value) cipher = new_cipher # Rely on OpenSSL for the initialization vector iv = cipher.random_iv cipher.encrypt cipher.key = @secret cipher.iv = iv encrypted_data = cipher.update(Marshal.dump(value)) encrypted_data << cipher.final [encrypted_data, iv].map {|v| ActiveSupport::Base64.encode64s(v)}.join("--") end |
#encrypt_and_sign(value) ⇒ Object
51 52 53 |
# File 'lib/active_support/message_encryptor.rb', line 51 def encrypt_and_sign(value) verifier.generate(encrypt(value)) end |