Class: OpenSSL::Cipher
| Relationships & Source Files | |
| Namespace Children | |
| Classes: | |
| Exceptions: | |
| Extension / Inclusion / Inheritance Descendants | |
| Subclasses: | |
| Inherits: | Object | 
| Defined in: | ext/openssl/ossl_cipher.c, ext/openssl/lib/openssl/cipher.rb | 
Overview
Provides symmetric algorithms for encryption and decryption. The algorithms that are available depend on the particular version of ::OpenSSL that is installed.
Listing all supported algorithms
A list of supported algorithms can be obtained by
puts OpenSSL::Cipher.ciphersInstantiating a Cipher
There are several ways to create a Cipher instance. Generally, a Cipher algorithm is categorized by its name, the key length in bits and the cipher mode to be used. The most generic way to create a Cipher is the following
cipher = OpenSSL::Cipher.new('<name>-<key length>-<mode>')That is, a string consisting of the hyphenated concatenation of the individual components name, key length and mode. Either all uppercase or all lowercase strings may be used, for example:
cipher = OpenSSL::Cipher.new('AES-128-CBC')For each algorithm supported, there is a class defined under the Cipher class that goes by the name of the cipher, e.g. to obtain an instance of AES, you could also use
# these are equivalent
cipher = OpenSSL::Cipher::AES.new(128, :CBC)
cipher = OpenSSL::Cipher::AES.new(128, 'CBC')
cipher = OpenSSL::Cipher::AES.new('128-CBC')Finally, due to its wide-spread use, there are also extra classes defined for the different key sizes of AES
cipher = OpenSSL::Cipher::AES128.new(:CBC)
cipher = OpenSSL::Cipher::AES192.new(:CBC)
cipher = OpenSSL::Cipher::AES256.new(:CBC)Choosing either encryption or decryption mode
Encryption and decryption are often very similar operations for symmetric algorithms, this is reflected by not having to choose different classes for either operation, both can be done using the same class. Still, after obtaining a Cipher instance, we need to tell the instance what it is that we intend to do with it, so we need to call either
cipher.encryptor
cipher.decrypton the Cipher instance. This should be the first call after creating the instance, otherwise configuration that has already been set could get lost in the process.
Choosing a key
Symmetric encryption requires a key that is the same for the encrypting and for the decrypting party and after initial key establishment should be kept as private information. There are a lot of ways to create insecure keys, the most notable is to simply take a password as the key without processing the password further. A simple and secure way to create a key for a particular Cipher is
cipher = OpenSSL::AES256.new(:CFB)
cipher.encrypt
key = cipher.random_key # also sets the generated key on the CipherIf you absolutely need to use passwords as encryption keys, you should use Password-Based Key Derivation Function 2 (PBKDF2) by generating the key with the help of the functionality provided by PKCS5.pbkdf2_hmac_sha1 or PKCS5.pbkdf2_hmac.
Although there is #pkcs5_keyivgen, its use is deprecated and it should only be used in legacy applications because it does not use the newer PKCS#5 v2 algorithms.
Choosing an IV
The cipher modes CBC, CFB, OFB and CTR all need an “initialization vector”, or short, IV. ECB mode is the only mode that does not require an IV, but there is almost no legitimate use case for this mode because of the fact that it does not sufficiently hide plaintext patterns. Therefore
You should never use ECB mode unless you are absolutely sure that you absolutely need it
Because of this, you will end up with a mode that explicitly requires an IV in any case. Although the IV can be seen as public information, i.e. it may be transmitted in public once generated, it should still stay unpredictable to prevent certain kinds of attacks. Therefore, ideally
Always create a secure random IV for every encryption of your Cipher
A new, random IV should be created for every encryption of data. Think of the IV as a nonce (number used once) - it's public but random and unpredictable. A secure random IV can be created as follows
cipher = ...
cipher.encrypt
key = cipher.random_key
iv = cipher.random_iv # also sets the generated IV on the CipherAlthough the key is generally a random value, too, it is a bad choice as an IV. There are elaborate ways how an attacker can take advantage of such an IV. As a general rule of thumb, exposing the key directly or indirectly should be avoided at all cost and exceptions only be made with good reason.
Calling #final
ECB (which should not be used) and CBC are both block-based modes. This means that unlike for the other streaming-based modes, they operate on fixed-size blocks of data, and therefore they require a “finalization” step to produce or correctly decrypt the last block of data by appropriately handling some form of padding. Therefore it is essential to add the output of #final to your encryption/decryption buffer or you will end up with decryption errors or truncated data.
Although this is not really necessary for streaming-mode ciphers, it is still recommended to apply the same pattern of adding the output of #final there as well - it also enables you to switch between modes more easily in the future.
Encrypting and decrypting some data
data = "Very, very confidential data"
cipher = OpenSSL::Cipher::AES.new(128, :CBC)
cipher.encrypt
key = cipher.random_key
iv = cipher.random_iv
encrypted = cipher.update(data) + cipher.final
#...
decipher = OpenSSL::Cipher::AES.new(128, :CBC)
decipher.decrypt
decipher.key = key
decipher.iv = iv
plain = decipher.update(encrypted) + decipher.final
puts data == plain #=> trueAuthenticated Encryption and Associated Data (AEAD)
If the ::OpenSSL version used supports it, an Authenticated Encryption mode (such as GCM or CCM) should always be preferred over any unauthenticated mode. Currently, ::OpenSSL supports AE only in combination with Associated Data (AEAD) where additional associated data is included in the encryption process to compute a tag at the end of the encryption. This tag will also be used in the decryption process and by verifying its validity, the authenticity of a given ciphertext is established.
This is superior to unauthenticated modes in that it allows to detect if somebody effectively changed the ciphertext after it had been encrypted. This prevents malicious modifications of the ciphertext that could otherwise be exploited to modify ciphertexts in ways beneficial to potential attackers.
An associated data is used where there is additional information, such as headers or some metadata, that must be also authenticated but not necessarily need to be encrypted. If no associated data is needed for encryption and later decryption, the ::OpenSSL library still requires a value to be set - “” may be used in case none is available.
An example using the GCM (Galois/Counter Mode). You have 16 bytes key, 12 bytes (96 bits) nonce and the associated data auth_data. Be sure not to reuse the key and nonce pair. Reusing an nonce ruins the security guarantees of GCM mode.
cipher = OpenSSL::Cipher::AES.new(128, :GCM).encrypt
cipher.key = key
cipher.iv = nonce
cipher.auth_data = auth_data
encrypted = cipher.update(data) + cipher.final
tag = cipher.auth_tag # produces 16 bytes tag by defaultNow you are the receiver. You know the key and have received nonce, auth_data, encrypted and tag through an untrusted network. Note that GCM accepts an arbitrary length tag between 1 and 16 bytes. You may additionally need to check that the received tag has the correct length, or you allow attackers to forge a valid single byte tag for the tampered ciphertext with a probability of 1/256.
raise "tag is truncated!" unless tag.bytesize == 16
decipher = OpenSSL::Cipher::AES.new(128, :GCM).decrypt
decipher.key = key
decipher.iv = nonce
decipher.auth_tag = tag
decipher.auth_data = auth_data
decrypted = decipher.update(encrypted) + decipher.final
puts data == decrypted #=> trueClass Method Summary
- 
    
      .new(string)  ⇒ Cipher 
    
    constructor
    The string must contain a valid cipher name like “AES-128-CBC” or “3DES”. 
- 
    
      .ciphers  ⇒ array[string...] 
    
    mod_func
    Returns the names of all available ciphers in an array. 
Instance Attribute Summary
- 
    
      #auth_tag(tag_len = 16)  ⇒ String 
    
    rw
    Gets the authentication tag generated by Authenticated Encryption Ciphermodes (GCM for example).
- 
    
      #auth_tag=(string)  ⇒ String 
    
    rw
    Sets the authentication tag to verify the integrity of the ciphertext. 
- 
    
      #iv_len  ⇒ Integer 
    
    rw
    Returns the expected length in bytes for an IV for this Cipher.
- 
    
      #iv_len=(integer)  ⇒ Integer 
    
    rw
    Sets the IV/nonce length of the Cipher.
- 
    
      #key_len  ⇒ Integer 
    
    rw
    Returns the key length in bytes of the Cipher.
- 
    
      #key_len=(integer)  ⇒ Integer 
    
    rw
    Sets the key length of the cipher. 
- 
    
      #authenticated?  ⇒ Boolean 
    
    readonly
    Indicated whether this Cipherinstance uses an Authenticated Encryption mode.
- 
    
      #auth_data=(string)  ⇒ String 
    
    writeonly
    Sets the cipher's additional authenticated data. 
- 
    
      #auth_tag_len=(Integer)  ⇒ Integer 
    
    writeonly
    Sets the length of the authentication tag to be generated or to be given for AEAD ciphers that requires it as in input parameter. 
- 
    
      #iv=(string)  ⇒ String 
    
    writeonly
    Sets the cipher IV. 
- 
    
      #key=(string)  ⇒ String 
    
    writeonly
    Sets the cipher key. 
- 
    
      #padding=(integer)  ⇒ Integer 
    
    writeonly
    Enables or disables padding. 
Instance Method Summary
- 
    
      #block_size  ⇒ Integer 
    
    Returns the size in bytes of the blocks on which this Cipheroperates on.
- 
    
      #decrypt  ⇒ self 
    
    Initializes the Cipherfor decryption.
- 
    
      #encrypt  ⇒ self 
    
    Initializes the Cipherfor encryption.
- 
    
      #final  ⇒ String 
    
    Returns the remaining data held in the cipher object. 
- 
    
      #name  ⇒ String 
    
    Returns the name of the cipher which may differ slightly from the original name provided. 
- 
    
      #pkcs5_keyivgen(pass, salt = nil, iterations = 2048, digest = "MD5")  ⇒ nil 
    
    Generates and sets the key/IV based on a password. 
- 
    
      #random_iv  ⇒ iv 
    
    Generate a random IV with Random.random_bytes and sets it to the cipher, and returns it. 
- 
    
      #random_key  ⇒ key 
    
    Generate a random key with Random.random_bytes and sets it to the cipher, and returns it. 
- 
    
      #reset  ⇒ self 
    
    Fully resets the internal state of the Cipher.
- 
    
      #update(data [, buffer])  ⇒ String, buffer 
    
    Encrypts data in a streaming fashion. 
Constructor Details
    .new(string)  ⇒ Cipher   
The string must contain a valid cipher name like “AES-128-CBC” or “3DES”.
A list of cipher names is available by calling .ciphers.
Class Method Details
    .ciphers  ⇒ array[string...]  (mod_func)  
Returns the names of all available ciphers in an array.
Instance Attribute Details
    #auth_data=(string)  ⇒ String  (writeonly)  
Sets the cipher's additional authenticated data. This field must be set when using AEAD cipher modes such as GCM or CCM. If no associated data shall be used, this method must still be called with a value of “”. The contents of this field should be non-sensitive data which will be added to the ciphertext to generate the authentication tag which validates the contents of the ciphertext.
The AAD must be set prior to encryption or decryption. In encryption mode, it must be set after calling #encrypt and setting #key= and #iv=. When decrypting, the authenticated data must be set after key, iv and especially after the authentication tag has been set. I.e. set it only after calling #decrypt, #key=, #iv= and #auth_tag= first.
    #auth_tag(tag_len = 16)  ⇒ String  (rw)  
Gets the authentication tag generated by Authenticated Encryption Cipher modes (GCM for example). This tag may be stored along with the ciphertext, then set on the decryption cipher to authenticate the contents of the ciphertext against changes. If the optional integer parameter tag_len is given, the returned tag will be tag_len bytes long. If the parameter is omitted, the default length of 16 bytes or the length previously set by #auth_tag_len= will be used. For maximum security, the longest possible should be chosen.
The tag may only be retrieved after calling #final.
    #auth_tag=(string)  ⇒ String  (rw)  
Sets the authentication tag to verify the integrity of the ciphertext. This can be called only when the cipher supports AE. The tag must be set after calling #decrypt, #key= and #iv=, but before calling #final. After all decryption is performed, the tag is verified automatically in the call to #final.
For OCB mode, the tag length must be supplied with #auth_tag_len= beforehand.
#auth_tag_len=(Integer) ⇒ Integer (writeonly)
Sets the length of the authentication tag to be generated or to be given for AEAD ciphers that requires it as in input parameter. Note that not all AEAD ciphers support this method.
In OCB mode, the length must be supplied both when encrypting and when decrypting, and must be before specifying an IV.
    #authenticated?  ⇒ Boolean  (readonly)  
Indicated whether this Cipher instance uses an Authenticated Encryption mode.
    #iv=(string)  ⇒ String  (writeonly)  
Sets the cipher IV. Please note that since you should never be using ECB mode, an IV is always explicitly required and should be set prior to encryption. The IV itself can be safely transmitted in public, but it should be unpredictable to prevent certain kinds of attacks. You may use #random_iv to create a secure random IV.
#iv_len ⇒ Integer (rw)
Returns the expected length in bytes for an IV for this Cipher.
#iv_len=(integer) ⇒ Integer (rw)
Sets the IV/nonce length of the Cipher. Normally block ciphers don't allow changing the IV length, but some make use of IV for 'nonce'. You may need this for interoperability with other applications.
    #key=(string)  ⇒ String  (writeonly)  
Sets the cipher key. To generate a key, you should either use a secure random byte string or, if the key is to be derived from a password, you should rely on PBKDF2 functionality provided by PKCS5. To generate a secure random-based key, #random_key may be used.
#key_len ⇒ Integer (rw)
Returns the key length in bytes of the Cipher.
#key_len=(integer) ⇒ Integer (rw)
Sets the key length of the cipher. If the cipher is a fixed length cipher then attempting to set the key length to any value other than the fixed value is an error.
Under normal circumstances you do not need to call this method (and probably shouldn't).
See EVP_CIPHER_CTX_set_key_length for further information.
#padding=(integer) ⇒ Integer (writeonly)
Enables or disables padding. By default encryption operations are padded using standard block padding and the padding is checked and removed when decrypting. If the pad parameter is zero then no padding is performed, the total amount of data encrypted or decrypted must then be a multiple of the block size or an error will occur.
See EVP_CIPHER_CTX_set_padding for further information.
Instance Method Details
#block_size ⇒ Integer
Returns the size in bytes of the blocks on which this Cipher operates on.
    #decrypt  ⇒ self   
Initializes the Cipher for decryption.
Make sure to call #encrypt or #decrypt before using any of the following methods:
- #key=, #iv=, #random_key, #random_iv, #pkcs5_keyivgen
 
Internally calls EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, 0).
    #encrypt  ⇒ self   
Initializes the Cipher for encryption.
Make sure to call #encrypt or #decrypt before using any of the following methods:
- #key=, #iv=, #random_key, #random_iv, #pkcs5_keyivgen
 
Internally calls EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, 1).
    #final  ⇒ String   
Returns the remaining data held in the cipher object. Further calls to #update or #final will return garbage. This call should always be made as the last call of an encryption or decryption operation, after having fed the entire plaintext or ciphertext to the Cipher instance.
If an authenticated cipher was used, a Cipher::CipherError is raised if the tag could not be authenticated successfully. Only call this method after setting the authentication tag and passing the entire contents of the ciphertext into the cipher.
    #name  ⇒ String   
Returns the name of the cipher which may differ slightly from the original name provided.
    #pkcs5_keyivgen(pass, salt = nil, iterations = 2048, digest = "MD5")  ⇒ nil   
Generates and sets the key/IV based on a password.
WARNING: This method is only PKCS5 v1.5 compliant when using RC2, RC4-40, or DES with MD5 or SHA1. Using anything else (like AES) will generate the key/iv using an ::OpenSSL specific method. This method is deprecated and should no longer be used. Use a PKCS5 v2 key generation method from PKCS5 instead.
Parameters
- 
saltmust be an 8 byte string if provided.
- 
iterationsis an integer with a default of 2048.
- 
digestis a Digest object that defaults to 'MD5'
A minimum of 1000 iterations is recommended.
    #random_iv  ⇒ iv   
Generate a random IV with Random.random_bytes and sets it to the cipher, and returns it.
You must call #encrypt or #decrypt before calling this method.
# File 'ext/openssl/lib/openssl/cipher.rb', line 55
def random_iv str = OpenSSL::Random.random_bytes(self.iv_len) self.iv = str end
    #random_key  ⇒ key   
Generate a random key with Random.random_bytes and sets it to the cipher, and returns it.
You must call #encrypt or #decrypt before calling this method.
# File 'ext/openssl/lib/openssl/cipher.rb', line 43
def random_key str = OpenSSL::Random.random_bytes(self.key_len) self.key = str end
    #reset  ⇒ self   
Fully resets the internal state of the Cipher. By using this, the same Cipher instance may be used several times for encryption or decryption tasks.
Internally calls EVP_CipherInit_ex(ctx, NULL, NULL, NULL, NULL, -1).
    #update(data [, buffer])  ⇒ String, buffer   
Encrypts data in a streaming fashion. Hand consecutive blocks of data to the update method in order to encrypt it. Returns the encrypted data chunk. When done, the output of #final should be additionally added to the result.
If buffer is given, the encryption/decryption result will be written to it. buffer will be resized automatically.