1*8fb009dcSAndroid Build Coastguard Worker /* Copyright (C) 1995-1998 Eric Young ([email protected]) 2*8fb009dcSAndroid Build Coastguard Worker * All rights reserved. 3*8fb009dcSAndroid Build Coastguard Worker * 4*8fb009dcSAndroid Build Coastguard Worker * This package is an SSL implementation written 5*8fb009dcSAndroid Build Coastguard Worker * by Eric Young ([email protected]). 6*8fb009dcSAndroid Build Coastguard Worker * The implementation was written so as to conform with Netscapes SSL. 7*8fb009dcSAndroid Build Coastguard Worker * 8*8fb009dcSAndroid Build Coastguard Worker * This library is free for commercial and non-commercial use as long as 9*8fb009dcSAndroid Build Coastguard Worker * the following conditions are aheared to. The following conditions 10*8fb009dcSAndroid Build Coastguard Worker * apply to all code found in this distribution, be it the RC4, RSA, 11*8fb009dcSAndroid Build Coastguard Worker * lhash, DES, etc., code; not just the SSL code. The SSL documentation 12*8fb009dcSAndroid Build Coastguard Worker * included with this distribution is covered by the same copyright terms 13*8fb009dcSAndroid Build Coastguard Worker * except that the holder is Tim Hudson ([email protected]). 14*8fb009dcSAndroid Build Coastguard Worker * 15*8fb009dcSAndroid Build Coastguard Worker * Copyright remains Eric Young's, and as such any Copyright notices in 16*8fb009dcSAndroid Build Coastguard Worker * the code are not to be removed. 17*8fb009dcSAndroid Build Coastguard Worker * If this package is used in a product, Eric Young should be given attribution 18*8fb009dcSAndroid Build Coastguard Worker * as the author of the parts of the library used. 19*8fb009dcSAndroid Build Coastguard Worker * This can be in the form of a textual message at program startup or 20*8fb009dcSAndroid Build Coastguard Worker * in documentation (online or textual) provided with the package. 21*8fb009dcSAndroid Build Coastguard Worker * 22*8fb009dcSAndroid Build Coastguard Worker * Redistribution and use in source and binary forms, with or without 23*8fb009dcSAndroid Build Coastguard Worker * modification, are permitted provided that the following conditions 24*8fb009dcSAndroid Build Coastguard Worker * are met: 25*8fb009dcSAndroid Build Coastguard Worker * 1. Redistributions of source code must retain the copyright 26*8fb009dcSAndroid Build Coastguard Worker * notice, this list of conditions and the following disclaimer. 27*8fb009dcSAndroid Build Coastguard Worker * 2. Redistributions in binary form must reproduce the above copyright 28*8fb009dcSAndroid Build Coastguard Worker * notice, this list of conditions and the following disclaimer in the 29*8fb009dcSAndroid Build Coastguard Worker * documentation and/or other materials provided with the distribution. 30*8fb009dcSAndroid Build Coastguard Worker * 3. All advertising materials mentioning features or use of this software 31*8fb009dcSAndroid Build Coastguard Worker * must display the following acknowledgement: 32*8fb009dcSAndroid Build Coastguard Worker * "This product includes cryptographic software written by 33*8fb009dcSAndroid Build Coastguard Worker * Eric Young ([email protected])" 34*8fb009dcSAndroid Build Coastguard Worker * The word 'cryptographic' can be left out if the rouines from the library 35*8fb009dcSAndroid Build Coastguard Worker * being used are not cryptographic related :-). 36*8fb009dcSAndroid Build Coastguard Worker * 4. If you include any Windows specific code (or a derivative thereof) from 37*8fb009dcSAndroid Build Coastguard Worker * the apps directory (application code) you must include an acknowledgement: 38*8fb009dcSAndroid Build Coastguard Worker * "This product includes software written by Tim Hudson ([email protected])" 39*8fb009dcSAndroid Build Coastguard Worker * 40*8fb009dcSAndroid Build Coastguard Worker * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 41*8fb009dcSAndroid Build Coastguard Worker * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 42*8fb009dcSAndroid Build Coastguard Worker * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 43*8fb009dcSAndroid Build Coastguard Worker * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 44*8fb009dcSAndroid Build Coastguard Worker * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 45*8fb009dcSAndroid Build Coastguard Worker * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 46*8fb009dcSAndroid Build Coastguard Worker * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 47*8fb009dcSAndroid Build Coastguard Worker * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 48*8fb009dcSAndroid Build Coastguard Worker * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 49*8fb009dcSAndroid Build Coastguard Worker * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 50*8fb009dcSAndroid Build Coastguard Worker * SUCH DAMAGE. 51*8fb009dcSAndroid Build Coastguard Worker * 52*8fb009dcSAndroid Build Coastguard Worker * The licence and distribution terms for any publically available version or 53*8fb009dcSAndroid Build Coastguard Worker * derivative of this code cannot be changed. i.e. this code cannot simply be 54*8fb009dcSAndroid Build Coastguard Worker * copied and put under another distribution licence 55*8fb009dcSAndroid Build Coastguard Worker * [including the GNU Public Licence.] */ 56*8fb009dcSAndroid Build Coastguard Worker 57*8fb009dcSAndroid Build Coastguard Worker #ifndef OPENSSL_HEADER_CIPHER_H 58*8fb009dcSAndroid Build Coastguard Worker #define OPENSSL_HEADER_CIPHER_H 59*8fb009dcSAndroid Build Coastguard Worker 60*8fb009dcSAndroid Build Coastguard Worker #include <openssl/base.h> 61*8fb009dcSAndroid Build Coastguard Worker 62*8fb009dcSAndroid Build Coastguard Worker #if defined(__cplusplus) 63*8fb009dcSAndroid Build Coastguard Worker extern "C" { 64*8fb009dcSAndroid Build Coastguard Worker #endif 65*8fb009dcSAndroid Build Coastguard Worker 66*8fb009dcSAndroid Build Coastguard Worker 67*8fb009dcSAndroid Build Coastguard Worker // Ciphers. 68*8fb009dcSAndroid Build Coastguard Worker 69*8fb009dcSAndroid Build Coastguard Worker 70*8fb009dcSAndroid Build Coastguard Worker // Cipher primitives. 71*8fb009dcSAndroid Build Coastguard Worker // 72*8fb009dcSAndroid Build Coastguard Worker // The following functions return |EVP_CIPHER| objects that implement the named 73*8fb009dcSAndroid Build Coastguard Worker // cipher algorithm. 74*8fb009dcSAndroid Build Coastguard Worker 75*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_rc4(void); 76*8fb009dcSAndroid Build Coastguard Worker 77*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_des_cbc(void); 78*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ecb(void); 79*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede(void); 80*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3(void); 81*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede_cbc(void); 82*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_cbc(void); 83*8fb009dcSAndroid Build Coastguard Worker 84*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ecb(void); 85*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cbc(void); 86*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ctr(void); 87*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ofb(void); 88*8fb009dcSAndroid Build Coastguard Worker 89*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ecb(void); 90*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cbc(void); 91*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ctr(void); 92*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ofb(void); 93*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_xts(void); 94*8fb009dcSAndroid Build Coastguard Worker 95*8fb009dcSAndroid Build Coastguard Worker // EVP_enc_null returns a 'cipher' that passes plaintext through as 96*8fb009dcSAndroid Build Coastguard Worker // ciphertext. 97*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_enc_null(void); 98*8fb009dcSAndroid Build Coastguard Worker 99*8fb009dcSAndroid Build Coastguard Worker // EVP_rc2_cbc returns a cipher that implements 128-bit RC2 in CBC mode. 100*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_rc2_cbc(void); 101*8fb009dcSAndroid Build Coastguard Worker 102*8fb009dcSAndroid Build Coastguard Worker // EVP_rc2_40_cbc returns a cipher that implements 40-bit RC2 in CBC mode. This 103*8fb009dcSAndroid Build Coastguard Worker // is obviously very, very weak and is included only in order to read PKCS#12 104*8fb009dcSAndroid Build Coastguard Worker // files, which often encrypt the certificate chain using this cipher. It is 105*8fb009dcSAndroid Build Coastguard Worker // deliberately not exported. 106*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER *EVP_rc2_40_cbc(void); 107*8fb009dcSAndroid Build Coastguard Worker 108*8fb009dcSAndroid Build Coastguard Worker // EVP_get_cipherbynid returns the cipher corresponding to the given NID, or 109*8fb009dcSAndroid Build Coastguard Worker // NULL if no such cipher is known. Note using this function links almost every 110*8fb009dcSAndroid Build Coastguard Worker // cipher implemented by BoringSSL into the binary, whether the caller uses them 111*8fb009dcSAndroid Build Coastguard Worker // or not. Size-conscious callers, such as client software, should not use this 112*8fb009dcSAndroid Build Coastguard Worker // function. 113*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid); 114*8fb009dcSAndroid Build Coastguard Worker 115*8fb009dcSAndroid Build Coastguard Worker 116*8fb009dcSAndroid Build Coastguard Worker // Cipher context allocation. 117*8fb009dcSAndroid Build Coastguard Worker // 118*8fb009dcSAndroid Build Coastguard Worker // An |EVP_CIPHER_CTX| represents the state of an encryption or decryption in 119*8fb009dcSAndroid Build Coastguard Worker // progress. 120*8fb009dcSAndroid Build Coastguard Worker 121*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_init initialises an, already allocated, |EVP_CIPHER_CTX|. 122*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx); 123*8fb009dcSAndroid Build Coastguard Worker 124*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_new allocates a fresh |EVP_CIPHER_CTX|, calls 125*8fb009dcSAndroid Build Coastguard Worker // |EVP_CIPHER_CTX_init| and returns it, or NULL on allocation failure. 126*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void); 127*8fb009dcSAndroid Build Coastguard Worker 128*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_cleanup frees any memory referenced by |ctx|. It returns 129*8fb009dcSAndroid Build Coastguard Worker // one. 130*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *ctx); 131*8fb009dcSAndroid Build Coastguard Worker 132*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_free calls |EVP_CIPHER_CTX_cleanup| on |ctx| and then frees 133*8fb009dcSAndroid Build Coastguard Worker // |ctx| itself. 134*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx); 135*8fb009dcSAndroid Build Coastguard Worker 136*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_copy sets |out| to be a duplicate of the current state of 137*8fb009dcSAndroid Build Coastguard Worker // |in|. The |out| argument must have been previously initialised. 138*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, 139*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER_CTX *in); 140*8fb009dcSAndroid Build Coastguard Worker 141*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_reset calls |EVP_CIPHER_CTX_cleanup| followed by 142*8fb009dcSAndroid Build Coastguard Worker // |EVP_CIPHER_CTX_init| and returns one. 143*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *ctx); 144*8fb009dcSAndroid Build Coastguard Worker 145*8fb009dcSAndroid Build Coastguard Worker 146*8fb009dcSAndroid Build Coastguard Worker // Cipher context configuration. 147*8fb009dcSAndroid Build Coastguard Worker 148*8fb009dcSAndroid Build Coastguard Worker // EVP_CipherInit_ex configures |ctx| for a fresh encryption (or decryption, if 149*8fb009dcSAndroid Build Coastguard Worker // |enc| is zero) operation using |cipher|. If |ctx| has been previously 150*8fb009dcSAndroid Build Coastguard Worker // configured with a cipher then |cipher|, |key| and |iv| may be |NULL| and 151*8fb009dcSAndroid Build Coastguard Worker // |enc| may be -1 to reuse the previous values. The operation will use |key| 152*8fb009dcSAndroid Build Coastguard Worker // as the key and |iv| as the IV (if any). These should have the correct 153*8fb009dcSAndroid Build Coastguard Worker // lengths given by |EVP_CIPHER_key_length| and |EVP_CIPHER_iv_length|. It 154*8fb009dcSAndroid Build Coastguard Worker // returns one on success and zero on error. 155*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, 156*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER *cipher, ENGINE *engine, 157*8fb009dcSAndroid Build Coastguard Worker const uint8_t *key, const uint8_t *iv, 158*8fb009dcSAndroid Build Coastguard Worker int enc); 159*8fb009dcSAndroid Build Coastguard Worker 160*8fb009dcSAndroid Build Coastguard Worker // EVP_EncryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to one. 161*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, 162*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER *cipher, ENGINE *impl, 163*8fb009dcSAndroid Build Coastguard Worker const uint8_t *key, const uint8_t *iv); 164*8fb009dcSAndroid Build Coastguard Worker 165*8fb009dcSAndroid Build Coastguard Worker // EVP_DecryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to zero. 166*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, 167*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER *cipher, ENGINE *impl, 168*8fb009dcSAndroid Build Coastguard Worker const uint8_t *key, const uint8_t *iv); 169*8fb009dcSAndroid Build Coastguard Worker 170*8fb009dcSAndroid Build Coastguard Worker 171*8fb009dcSAndroid Build Coastguard Worker // Cipher operations. 172*8fb009dcSAndroid Build Coastguard Worker 173*8fb009dcSAndroid Build Coastguard Worker // EVP_EncryptUpdate encrypts |in_len| bytes from |in| to |out|. The number 174*8fb009dcSAndroid Build Coastguard Worker // of output bytes may be up to |in_len| plus the block length minus one and 175*8fb009dcSAndroid Build Coastguard Worker // |out| must have sufficient space. The number of bytes actually output is 176*8fb009dcSAndroid Build Coastguard Worker // written to |*out_len|. It returns one on success and zero otherwise. 177*8fb009dcSAndroid Build Coastguard Worker // 178*8fb009dcSAndroid Build Coastguard Worker // If |ctx| is an AEAD cipher, e.g. |EVP_aes_128_gcm|, and |out| is NULL, this 179*8fb009dcSAndroid Build Coastguard Worker // function instead adds |in_len| bytes from |in| to the AAD and sets |*out_len| 180*8fb009dcSAndroid Build Coastguard Worker // to |in_len|. The AAD must be fully specified in this way before this function 181*8fb009dcSAndroid Build Coastguard Worker // is used to encrypt plaintext. 182*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, 183*8fb009dcSAndroid Build Coastguard Worker int *out_len, const uint8_t *in, 184*8fb009dcSAndroid Build Coastguard Worker int in_len); 185*8fb009dcSAndroid Build Coastguard Worker 186*8fb009dcSAndroid Build Coastguard Worker // EVP_EncryptFinal_ex writes at most a block of ciphertext to |out| and sets 187*8fb009dcSAndroid Build Coastguard Worker // |*out_len| to the number of bytes written. If padding is enabled (the 188*8fb009dcSAndroid Build Coastguard Worker // default) then standard padding is applied to create the final block. If 189*8fb009dcSAndroid Build Coastguard Worker // padding is disabled (with |EVP_CIPHER_CTX_set_padding|) then any partial 190*8fb009dcSAndroid Build Coastguard Worker // block remaining will cause an error. The function returns one on success and 191*8fb009dcSAndroid Build Coastguard Worker // zero otherwise. 192*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, 193*8fb009dcSAndroid Build Coastguard Worker int *out_len); 194*8fb009dcSAndroid Build Coastguard Worker 195*8fb009dcSAndroid Build Coastguard Worker // EVP_DecryptUpdate decrypts |in_len| bytes from |in| to |out|. The number of 196*8fb009dcSAndroid Build Coastguard Worker // output bytes may be up to |in_len| plus the block length minus one and |out| 197*8fb009dcSAndroid Build Coastguard Worker // must have sufficient space. The number of bytes actually output is written 198*8fb009dcSAndroid Build Coastguard Worker // to |*out_len|. It returns one on success and zero otherwise. 199*8fb009dcSAndroid Build Coastguard Worker // 200*8fb009dcSAndroid Build Coastguard Worker // If |ctx| is an AEAD cipher, e.g. |EVP_aes_128_gcm|, and |out| is NULL, this 201*8fb009dcSAndroid Build Coastguard Worker // function instead adds |in_len| bytes from |in| to the AAD and sets |*out_len| 202*8fb009dcSAndroid Build Coastguard Worker // to |in_len|. The AAD must be fully specified in this way before this function 203*8fb009dcSAndroid Build Coastguard Worker // is used to decrypt ciphertext. 204*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, 205*8fb009dcSAndroid Build Coastguard Worker int *out_len, const uint8_t *in, 206*8fb009dcSAndroid Build Coastguard Worker int in_len); 207*8fb009dcSAndroid Build Coastguard Worker 208*8fb009dcSAndroid Build Coastguard Worker // EVP_DecryptFinal_ex writes at most a block of ciphertext to |out| and sets 209*8fb009dcSAndroid Build Coastguard Worker // |*out_len| to the number of bytes written. If padding is enabled (the 210*8fb009dcSAndroid Build Coastguard Worker // default) then padding is removed from the final block. 211*8fb009dcSAndroid Build Coastguard Worker // 212*8fb009dcSAndroid Build Coastguard Worker // WARNING: it is unsafe to call this function with unauthenticated 213*8fb009dcSAndroid Build Coastguard Worker // ciphertext if padding is enabled. 214*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, 215*8fb009dcSAndroid Build Coastguard Worker int *out_len); 216*8fb009dcSAndroid Build Coastguard Worker 217*8fb009dcSAndroid Build Coastguard Worker // EVP_CipherUpdate calls either |EVP_EncryptUpdate| or |EVP_DecryptUpdate| 218*8fb009dcSAndroid Build Coastguard Worker // depending on how |ctx| has been setup. 219*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, 220*8fb009dcSAndroid Build Coastguard Worker int *out_len, const uint8_t *in, 221*8fb009dcSAndroid Build Coastguard Worker int in_len); 222*8fb009dcSAndroid Build Coastguard Worker 223*8fb009dcSAndroid Build Coastguard Worker // EVP_CipherFinal_ex calls either |EVP_EncryptFinal_ex| or 224*8fb009dcSAndroid Build Coastguard Worker // |EVP_DecryptFinal_ex| depending on how |ctx| has been setup. 225*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, 226*8fb009dcSAndroid Build Coastguard Worker int *out_len); 227*8fb009dcSAndroid Build Coastguard Worker 228*8fb009dcSAndroid Build Coastguard Worker 229*8fb009dcSAndroid Build Coastguard Worker // Cipher context accessors. 230*8fb009dcSAndroid Build Coastguard Worker 231*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_cipher returns the |EVP_CIPHER| underlying |ctx|, or NULL if 232*8fb009dcSAndroid Build Coastguard Worker // none has been set. 233*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_CIPHER_CTX_cipher( 234*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER_CTX *ctx); 235*8fb009dcSAndroid Build Coastguard Worker 236*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_nid returns a NID identifying the |EVP_CIPHER| underlying 237*8fb009dcSAndroid Build Coastguard Worker // |ctx| (e.g. |NID_aes_128_gcm|). It will crash if no cipher has been 238*8fb009dcSAndroid Build Coastguard Worker // configured. 239*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx); 240*8fb009dcSAndroid Build Coastguard Worker 241*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_encrypting returns one if |ctx| is configured for encryption 242*8fb009dcSAndroid Build Coastguard Worker // and zero otherwise. 243*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_CTX_encrypting(const EVP_CIPHER_CTX *ctx); 244*8fb009dcSAndroid Build Coastguard Worker 245*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_block_size returns the block size, in bytes, of the cipher 246*8fb009dcSAndroid Build Coastguard Worker // underlying |ctx|, or one if the cipher is a stream cipher. It will crash if 247*8fb009dcSAndroid Build Coastguard Worker // no cipher has been configured. 248*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx); 249*8fb009dcSAndroid Build Coastguard Worker 250*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_key_length returns the key size, in bytes, of the cipher 251*8fb009dcSAndroid Build Coastguard Worker // underlying |ctx| or zero if no cipher has been configured. 252*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx); 253*8fb009dcSAndroid Build Coastguard Worker 254*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_iv_length returns the IV size, in bytes, of the cipher 255*8fb009dcSAndroid Build Coastguard Worker // underlying |ctx|. It will crash if no cipher has been configured. 256*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx); 257*8fb009dcSAndroid Build Coastguard Worker 258*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_get_app_data returns the opaque, application data pointer for 259*8fb009dcSAndroid Build Coastguard Worker // |ctx|, or NULL if none has been set. 260*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx); 261*8fb009dcSAndroid Build Coastguard Worker 262*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_set_app_data sets the opaque, application data pointer for 263*8fb009dcSAndroid Build Coastguard Worker // |ctx| to |data|. 264*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, 265*8fb009dcSAndroid Build Coastguard Worker void *data); 266*8fb009dcSAndroid Build Coastguard Worker 267*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_flags returns a value which is the OR of zero or more 268*8fb009dcSAndroid Build Coastguard Worker // |EVP_CIPH_*| flags. It will crash if no cipher has been configured. 269*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx); 270*8fb009dcSAndroid Build Coastguard Worker 271*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_mode returns one of the |EVP_CIPH_*| cipher mode values 272*8fb009dcSAndroid Build Coastguard Worker // enumerated below. It will crash if no cipher has been configured. 273*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx); 274*8fb009dcSAndroid Build Coastguard Worker 275*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_ctrl is an |ioctl| like function. The |command| argument 276*8fb009dcSAndroid Build Coastguard Worker // should be one of the |EVP_CTRL_*| values. The |arg| and |ptr| arguments are 277*8fb009dcSAndroid Build Coastguard Worker // specific to the command in question. 278*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command, 279*8fb009dcSAndroid Build Coastguard Worker int arg, void *ptr); 280*8fb009dcSAndroid Build Coastguard Worker 281*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_set_padding sets whether padding is enabled for |ctx| and 282*8fb009dcSAndroid Build Coastguard Worker // returns one. Pass a non-zero |pad| to enable padding (the default) or zero 283*8fb009dcSAndroid Build Coastguard Worker // to disable. 284*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad); 285*8fb009dcSAndroid Build Coastguard Worker 286*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_set_key_length sets the key length for |ctx|. This is only 287*8fb009dcSAndroid Build Coastguard Worker // valid for ciphers that can take a variable length key. It returns one on 288*8fb009dcSAndroid Build Coastguard Worker // success and zero on error. 289*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *ctx, 290*8fb009dcSAndroid Build Coastguard Worker unsigned key_len); 291*8fb009dcSAndroid Build Coastguard Worker 292*8fb009dcSAndroid Build Coastguard Worker 293*8fb009dcSAndroid Build Coastguard Worker // Cipher accessors. 294*8fb009dcSAndroid Build Coastguard Worker 295*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_nid returns a NID identifying |cipher|. (For example, 296*8fb009dcSAndroid Build Coastguard Worker // |NID_aes_128_gcm|.) 297*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CIPHER_nid(const EVP_CIPHER *cipher); 298*8fb009dcSAndroid Build Coastguard Worker 299*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_block_size returns the block size, in bytes, for |cipher|, or one 300*8fb009dcSAndroid Build Coastguard Worker // if |cipher| is a stream cipher. 301*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher); 302*8fb009dcSAndroid Build Coastguard Worker 303*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_key_length returns the key size, in bytes, for |cipher|. If 304*8fb009dcSAndroid Build Coastguard Worker // |cipher| can take a variable key length then this function returns the 305*8fb009dcSAndroid Build Coastguard Worker // default key length and |EVP_CIPHER_flags| will return a value with 306*8fb009dcSAndroid Build Coastguard Worker // |EVP_CIPH_VARIABLE_LENGTH| set. 307*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher); 308*8fb009dcSAndroid Build Coastguard Worker 309*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_iv_length returns the IV size, in bytes, of |cipher|, or zero if 310*8fb009dcSAndroid Build Coastguard Worker // |cipher| doesn't take an IV. 311*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher); 312*8fb009dcSAndroid Build Coastguard Worker 313*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_flags returns a value which is the OR of zero or more 314*8fb009dcSAndroid Build Coastguard Worker // |EVP_CIPH_*| flags. 315*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher); 316*8fb009dcSAndroid Build Coastguard Worker 317*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_mode returns one of the cipher mode values enumerated below. 318*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher); 319*8fb009dcSAndroid Build Coastguard Worker 320*8fb009dcSAndroid Build Coastguard Worker 321*8fb009dcSAndroid Build Coastguard Worker // Key derivation. 322*8fb009dcSAndroid Build Coastguard Worker 323*8fb009dcSAndroid Build Coastguard Worker // EVP_BytesToKey generates a key and IV for the cipher |type| by iterating 324*8fb009dcSAndroid Build Coastguard Worker // |md| |count| times using |data| and |salt|. On entry, the |key| and |iv| 325*8fb009dcSAndroid Build Coastguard Worker // buffers must have enough space to hold a key and IV for |type|. It returns 326*8fb009dcSAndroid Build Coastguard Worker // the length of the key on success or zero on error. 327*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md, 328*8fb009dcSAndroid Build Coastguard Worker const uint8_t *salt, const uint8_t *data, 329*8fb009dcSAndroid Build Coastguard Worker size_t data_len, unsigned count, uint8_t *key, 330*8fb009dcSAndroid Build Coastguard Worker uint8_t *iv); 331*8fb009dcSAndroid Build Coastguard Worker 332*8fb009dcSAndroid Build Coastguard Worker 333*8fb009dcSAndroid Build Coastguard Worker // Cipher modes (for |EVP_CIPHER_mode|). 334*8fb009dcSAndroid Build Coastguard Worker 335*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_STREAM_CIPHER 0x0 336*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_ECB_MODE 0x1 337*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_CBC_MODE 0x2 338*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_CFB_MODE 0x3 339*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_OFB_MODE 0x4 340*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_CTR_MODE 0x5 341*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_GCM_MODE 0x6 342*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_XTS_MODE 0x7 343*8fb009dcSAndroid Build Coastguard Worker 344*8fb009dcSAndroid Build Coastguard Worker // The following values are never returned from |EVP_CIPHER_mode| and are 345*8fb009dcSAndroid Build Coastguard Worker // included only to make it easier to compile code with BoringSSL. 346*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_CCM_MODE 0x8 347*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_OCB_MODE 0x9 348*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_WRAP_MODE 0xa 349*8fb009dcSAndroid Build Coastguard Worker 350*8fb009dcSAndroid Build Coastguard Worker 351*8fb009dcSAndroid Build Coastguard Worker // Cipher flags (for |EVP_CIPHER_flags|). 352*8fb009dcSAndroid Build Coastguard Worker 353*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_VARIABLE_LENGTH indicates that the cipher takes a variable length 354*8fb009dcSAndroid Build Coastguard Worker // key. 355*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_VARIABLE_LENGTH 0x40 356*8fb009dcSAndroid Build Coastguard Worker 357*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_ALWAYS_CALL_INIT indicates that the |init| function for the cipher 358*8fb009dcSAndroid Build Coastguard Worker // should always be called when initialising a new operation, even if the key 359*8fb009dcSAndroid Build Coastguard Worker // is NULL to indicate that the same key is being used. 360*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_ALWAYS_CALL_INIT 0x80 361*8fb009dcSAndroid Build Coastguard Worker 362*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_CUSTOM_IV indicates that the cipher manages the IV itself rather 363*8fb009dcSAndroid Build Coastguard Worker // than keeping it in the |iv| member of |EVP_CIPHER_CTX|. 364*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_CUSTOM_IV 0x100 365*8fb009dcSAndroid Build Coastguard Worker 366*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_CTRL_INIT indicates that EVP_CTRL_INIT should be used when 367*8fb009dcSAndroid Build Coastguard Worker // initialising an |EVP_CIPHER_CTX|. 368*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_CTRL_INIT 0x200 369*8fb009dcSAndroid Build Coastguard Worker 370*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_FLAG_CUSTOM_CIPHER indicates that the cipher manages blocking 371*8fb009dcSAndroid Build Coastguard Worker // itself. This causes EVP_(En|De)crypt_ex to be simple wrapper functions. 372*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_FLAG_CUSTOM_CIPHER 0x400 373*8fb009dcSAndroid Build Coastguard Worker 374*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_FLAG_AEAD_CIPHER specifies that the cipher is an AEAD. This is an 375*8fb009dcSAndroid Build Coastguard Worker // older version of the proper AEAD interface. See aead.h for the current 376*8fb009dcSAndroid Build Coastguard Worker // one. 377*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_FLAG_AEAD_CIPHER 0x800 378*8fb009dcSAndroid Build Coastguard Worker 379*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_CUSTOM_COPY indicates that the |ctrl| callback should be called 380*8fb009dcSAndroid Build Coastguard Worker // with |EVP_CTRL_COPY| at the end of normal |EVP_CIPHER_CTX_copy| 381*8fb009dcSAndroid Build Coastguard Worker // processing. 382*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_CUSTOM_COPY 0x1000 383*8fb009dcSAndroid Build Coastguard Worker 384*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_FLAG_NON_FIPS_ALLOW is meaningless. In OpenSSL it permits non-FIPS 385*8fb009dcSAndroid Build Coastguard Worker // algorithms in FIPS mode. But BoringSSL FIPS mode doesn't prohibit algorithms 386*8fb009dcSAndroid Build Coastguard Worker // (it's up the the caller to use the FIPS module in a fashion compliant with 387*8fb009dcSAndroid Build Coastguard Worker // their needs). Thus this exists only to allow code to compile. 388*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_FLAG_NON_FIPS_ALLOW 0 389*8fb009dcSAndroid Build Coastguard Worker 390*8fb009dcSAndroid Build Coastguard Worker 391*8fb009dcSAndroid Build Coastguard Worker // Deprecated functions 392*8fb009dcSAndroid Build Coastguard Worker 393*8fb009dcSAndroid Build Coastguard Worker // EVP_CipherInit acts like EVP_CipherInit_ex except that |EVP_CIPHER_CTX_init| 394*8fb009dcSAndroid Build Coastguard Worker // is called on |cipher| first, if |cipher| is not NULL. 395*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, 396*8fb009dcSAndroid Build Coastguard Worker const uint8_t *key, const uint8_t *iv, 397*8fb009dcSAndroid Build Coastguard Worker int enc); 398*8fb009dcSAndroid Build Coastguard Worker 399*8fb009dcSAndroid Build Coastguard Worker // EVP_EncryptInit calls |EVP_CipherInit| with |enc| equal to one. 400*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_EncryptInit(EVP_CIPHER_CTX *ctx, 401*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER *cipher, const uint8_t *key, 402*8fb009dcSAndroid Build Coastguard Worker const uint8_t *iv); 403*8fb009dcSAndroid Build Coastguard Worker 404*8fb009dcSAndroid Build Coastguard Worker // EVP_DecryptInit calls |EVP_CipherInit| with |enc| equal to zero. 405*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_DecryptInit(EVP_CIPHER_CTX *ctx, 406*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER *cipher, const uint8_t *key, 407*8fb009dcSAndroid Build Coastguard Worker const uint8_t *iv); 408*8fb009dcSAndroid Build Coastguard Worker 409*8fb009dcSAndroid Build Coastguard Worker // EVP_CipherFinal calls |EVP_CipherFinal_ex|. 410*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, uint8_t *out, 411*8fb009dcSAndroid Build Coastguard Worker int *out_len); 412*8fb009dcSAndroid Build Coastguard Worker 413*8fb009dcSAndroid Build Coastguard Worker // EVP_EncryptFinal calls |EVP_EncryptFinal_ex|. 414*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, uint8_t *out, 415*8fb009dcSAndroid Build Coastguard Worker int *out_len); 416*8fb009dcSAndroid Build Coastguard Worker 417*8fb009dcSAndroid Build Coastguard Worker // EVP_DecryptFinal calls |EVP_DecryptFinal_ex|. 418*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, uint8_t *out, 419*8fb009dcSAndroid Build Coastguard Worker int *out_len); 420*8fb009dcSAndroid Build Coastguard Worker 421*8fb009dcSAndroid Build Coastguard Worker // EVP_Cipher historically exposed an internal implementation detail of |ctx| 422*8fb009dcSAndroid Build Coastguard Worker // and should not be used. Use |EVP_CipherUpdate| and |EVP_CipherFinal_ex| 423*8fb009dcSAndroid Build Coastguard Worker // instead. 424*8fb009dcSAndroid Build Coastguard Worker // 425*8fb009dcSAndroid Build Coastguard Worker // If |ctx|'s cipher does not have the |EVP_CIPH_FLAG_CUSTOM_CIPHER| flag, it 426*8fb009dcSAndroid Build Coastguard Worker // encrypts or decrypts |in_len| bytes from |in| and writes the resulting 427*8fb009dcSAndroid Build Coastguard Worker // |in_len| bytes to |out|. It returns one on success and zero on error. 428*8fb009dcSAndroid Build Coastguard Worker // |in_len| must be a multiple of the cipher's block size, or the behavior is 429*8fb009dcSAndroid Build Coastguard Worker // undefined. 430*8fb009dcSAndroid Build Coastguard Worker // 431*8fb009dcSAndroid Build Coastguard Worker // TODO(davidben): Rather than being undefined (it'll often round the length up 432*8fb009dcSAndroid Build Coastguard Worker // and likely read past the buffer), just fail the operation. 433*8fb009dcSAndroid Build Coastguard Worker // 434*8fb009dcSAndroid Build Coastguard Worker // If |ctx|'s cipher has the |EVP_CIPH_FLAG_CUSTOM_CIPHER| flag, it runs in one 435*8fb009dcSAndroid Build Coastguard Worker // of two modes: If |in| is non-NULL, it behaves like |EVP_CipherUpdate|. If 436*8fb009dcSAndroid Build Coastguard Worker // |in| is NULL, it behaves like |EVP_CipherFinal_ex|. In both cases, it returns 437*8fb009dcSAndroid Build Coastguard Worker // |*out_len| on success and -1 on error. 438*8fb009dcSAndroid Build Coastguard Worker // 439*8fb009dcSAndroid Build Coastguard Worker // WARNING: The two possible calling conventions of this function signal errors 440*8fb009dcSAndroid Build Coastguard Worker // incompatibly. In the first, zero indicates an error. In the second, zero 441*8fb009dcSAndroid Build Coastguard Worker // indicates success with zero bytes of output. 442*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, 443*8fb009dcSAndroid Build Coastguard Worker const uint8_t *in, size_t in_len); 444*8fb009dcSAndroid Build Coastguard Worker 445*8fb009dcSAndroid Build Coastguard Worker // EVP_add_cipher_alias does nothing and returns one. 446*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT int EVP_add_cipher_alias(const char *a, const char *b); 447*8fb009dcSAndroid Build Coastguard Worker 448*8fb009dcSAndroid Build Coastguard Worker // EVP_get_cipherbyname returns an |EVP_CIPHER| given a human readable name in 449*8fb009dcSAndroid Build Coastguard Worker // |name|, or NULL if the name is unknown. Note using this function links almost 450*8fb009dcSAndroid Build Coastguard Worker // every cipher implemented by BoringSSL into the binary, not just the ones the 451*8fb009dcSAndroid Build Coastguard Worker // caller requests. Size-conscious callers, such as client software, should not 452*8fb009dcSAndroid Build Coastguard Worker // use this function. 453*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbyname(const char *name); 454*8fb009dcSAndroid Build Coastguard Worker 455*8fb009dcSAndroid Build Coastguard Worker // These AEADs are deprecated AES-GCM implementations that set 456*8fb009dcSAndroid Build Coastguard Worker // |EVP_CIPH_FLAG_CUSTOM_CIPHER|. Use |EVP_aead_aes_128_gcm| and 457*8fb009dcSAndroid Build Coastguard Worker // |EVP_aead_aes_256_gcm| instead. 458*8fb009dcSAndroid Build Coastguard Worker // 459*8fb009dcSAndroid Build Coastguard Worker // WARNING: Although these APIs allow streaming an individual AES-GCM operation, 460*8fb009dcSAndroid Build Coastguard Worker // this is not secure. Until calling |EVP_DecryptFinal_ex|, the tag has not yet 461*8fb009dcSAndroid Build Coastguard Worker // been checked and output released by |EVP_DecryptUpdate| is unauthenticated 462*8fb009dcSAndroid Build Coastguard Worker // and easily manipulated by attackers. Callers must buffer the output and may 463*8fb009dcSAndroid Build Coastguard Worker // not act on it until the entire operation is complete. 464*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_gcm(void); 465*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_gcm(void); 466*8fb009dcSAndroid Build Coastguard Worker 467*8fb009dcSAndroid Build Coastguard Worker // These are deprecated, 192-bit version of AES. 468*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ecb(void); 469*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cbc(void); 470*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ctr(void); 471*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_gcm(void); 472*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ofb(void); 473*8fb009dcSAndroid Build Coastguard Worker 474*8fb009dcSAndroid Build Coastguard Worker // EVP_des_ede3_ecb is an alias for |EVP_des_ede3|. Use the former instead. 475*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_ecb(void); 476*8fb009dcSAndroid Build Coastguard Worker 477*8fb009dcSAndroid Build Coastguard Worker // EVP_aes_128_cfb128 is only available in decrepit. 478*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cfb128(void); 479*8fb009dcSAndroid Build Coastguard Worker 480*8fb009dcSAndroid Build Coastguard Worker // EVP_aes_128_cfb is an alias for |EVP_aes_128_cfb128| and is only available in 481*8fb009dcSAndroid Build Coastguard Worker // decrepit. 482*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cfb(void); 483*8fb009dcSAndroid Build Coastguard Worker 484*8fb009dcSAndroid Build Coastguard Worker // EVP_aes_192_cfb128 is only available in decrepit. 485*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cfb128(void); 486*8fb009dcSAndroid Build Coastguard Worker 487*8fb009dcSAndroid Build Coastguard Worker // EVP_aes_192_cfb is an alias for |EVP_aes_192_cfb128| and is only available in 488*8fb009dcSAndroid Build Coastguard Worker // decrepit. 489*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cfb(void); 490*8fb009dcSAndroid Build Coastguard Worker 491*8fb009dcSAndroid Build Coastguard Worker // EVP_aes_256_cfb128 is only available in decrepit. 492*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cfb128(void); 493*8fb009dcSAndroid Build Coastguard Worker 494*8fb009dcSAndroid Build Coastguard Worker // EVP_aes_256_cfb is an alias for |EVP_aes_256_cfb128| and is only available in 495*8fb009dcSAndroid Build Coastguard Worker // decrepit. 496*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cfb(void); 497*8fb009dcSAndroid Build Coastguard Worker 498*8fb009dcSAndroid Build Coastguard Worker // EVP_bf_ecb is Blowfish in ECB mode and is only available in decrepit. 499*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_ecb(void); 500*8fb009dcSAndroid Build Coastguard Worker 501*8fb009dcSAndroid Build Coastguard Worker // EVP_bf_cbc is Blowfish in CBC mode and is only available in decrepit. 502*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_cbc(void); 503*8fb009dcSAndroid Build Coastguard Worker 504*8fb009dcSAndroid Build Coastguard Worker // EVP_bf_cfb is Blowfish in 64-bit CFB mode and is only available in decrepit. 505*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_cfb(void); 506*8fb009dcSAndroid Build Coastguard Worker 507*8fb009dcSAndroid Build Coastguard Worker // EVP_cast5_ecb is CAST5 in ECB mode and is only available in decrepit. 508*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_cast5_ecb(void); 509*8fb009dcSAndroid Build Coastguard Worker 510*8fb009dcSAndroid Build Coastguard Worker // EVP_cast5_cbc is CAST5 in CBC mode and is only available in decrepit. 511*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT const EVP_CIPHER *EVP_cast5_cbc(void); 512*8fb009dcSAndroid Build Coastguard Worker 513*8fb009dcSAndroid Build Coastguard Worker // The following flags do nothing and are included only to make it easier to 514*8fb009dcSAndroid Build Coastguard Worker // compile code with BoringSSL. 515*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPHER_CTX_FLAG_WRAP_ALLOW 0 516*8fb009dcSAndroid Build Coastguard Worker 517*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPHER_CTX_set_flags does nothing. 518*8fb009dcSAndroid Build Coastguard Worker OPENSSL_EXPORT void EVP_CIPHER_CTX_set_flags(const EVP_CIPHER_CTX *ctx, 519*8fb009dcSAndroid Build Coastguard Worker uint32_t flags); 520*8fb009dcSAndroid Build Coastguard Worker 521*8fb009dcSAndroid Build Coastguard Worker 522*8fb009dcSAndroid Build Coastguard Worker // Private functions. 523*8fb009dcSAndroid Build Coastguard Worker 524*8fb009dcSAndroid Build Coastguard Worker // EVP_CIPH_NO_PADDING disables padding in block ciphers. 525*8fb009dcSAndroid Build Coastguard Worker #define EVP_CIPH_NO_PADDING 0x800 526*8fb009dcSAndroid Build Coastguard Worker 527*8fb009dcSAndroid Build Coastguard Worker // The following are |EVP_CIPHER_CTX_ctrl| commands. 528*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_INIT 0x0 529*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_SET_KEY_LENGTH 0x1 530*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GET_RC2_KEY_BITS 0x2 531*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_SET_RC2_KEY_BITS 0x3 532*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GET_RC5_ROUNDS 0x4 533*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_SET_RC5_ROUNDS 0x5 534*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_RAND_KEY 0x6 535*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_PBE_PRF_NID 0x7 536*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_COPY 0x8 537*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_AEAD_SET_IVLEN 0x9 538*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_AEAD_GET_TAG 0x10 539*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_AEAD_SET_TAG 0x11 540*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_AEAD_SET_IV_FIXED 0x12 541*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GCM_IV_GEN 0x13 542*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_AEAD_SET_MAC_KEY 0x17 543*8fb009dcSAndroid Build Coastguard Worker // EVP_CTRL_GCM_SET_IV_INV sets the GCM invocation field, decrypt only 544*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GCM_SET_IV_INV 0x18 545*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GET_IVLEN 0x19 546*8fb009dcSAndroid Build Coastguard Worker 547*8fb009dcSAndroid Build Coastguard Worker // The following constants are unused. 548*8fb009dcSAndroid Build Coastguard Worker #define EVP_GCM_TLS_FIXED_IV_LEN 4 549*8fb009dcSAndroid Build Coastguard Worker #define EVP_GCM_TLS_EXPLICIT_IV_LEN 8 550*8fb009dcSAndroid Build Coastguard Worker #define EVP_GCM_TLS_TAG_LEN 16 551*8fb009dcSAndroid Build Coastguard Worker 552*8fb009dcSAndroid Build Coastguard Worker // The following are legacy aliases for AEAD |EVP_CIPHER_CTX_ctrl| values. 553*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GCM_SET_IVLEN EVP_CTRL_AEAD_SET_IVLEN 554*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GCM_GET_TAG EVP_CTRL_AEAD_GET_TAG 555*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GCM_SET_TAG EVP_CTRL_AEAD_SET_TAG 556*8fb009dcSAndroid Build Coastguard Worker #define EVP_CTRL_GCM_SET_IV_FIXED EVP_CTRL_AEAD_SET_IV_FIXED 557*8fb009dcSAndroid Build Coastguard Worker 558*8fb009dcSAndroid Build Coastguard Worker #define EVP_MAX_KEY_LENGTH 64 559*8fb009dcSAndroid Build Coastguard Worker #define EVP_MAX_IV_LENGTH 16 560*8fb009dcSAndroid Build Coastguard Worker #define EVP_MAX_BLOCK_LENGTH 32 561*8fb009dcSAndroid Build Coastguard Worker 562*8fb009dcSAndroid Build Coastguard Worker struct evp_cipher_ctx_st { 563*8fb009dcSAndroid Build Coastguard Worker // cipher contains the underlying cipher for this context. 564*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER *cipher; 565*8fb009dcSAndroid Build Coastguard Worker 566*8fb009dcSAndroid Build Coastguard Worker // app_data is a pointer to opaque, user data. 567*8fb009dcSAndroid Build Coastguard Worker void *app_data; // application stuff 568*8fb009dcSAndroid Build Coastguard Worker 569*8fb009dcSAndroid Build Coastguard Worker // cipher_data points to the |cipher| specific state. 570*8fb009dcSAndroid Build Coastguard Worker void *cipher_data; 571*8fb009dcSAndroid Build Coastguard Worker 572*8fb009dcSAndroid Build Coastguard Worker // key_len contains the length of the key, which may differ from 573*8fb009dcSAndroid Build Coastguard Worker // |cipher->key_len| if the cipher can take a variable key length. 574*8fb009dcSAndroid Build Coastguard Worker unsigned key_len; 575*8fb009dcSAndroid Build Coastguard Worker 576*8fb009dcSAndroid Build Coastguard Worker // encrypt is one if encrypting and zero if decrypting. 577*8fb009dcSAndroid Build Coastguard Worker int encrypt; 578*8fb009dcSAndroid Build Coastguard Worker 579*8fb009dcSAndroid Build Coastguard Worker // flags contains the OR of zero or more |EVP_CIPH_*| flags, above. 580*8fb009dcSAndroid Build Coastguard Worker uint32_t flags; 581*8fb009dcSAndroid Build Coastguard Worker 582*8fb009dcSAndroid Build Coastguard Worker // oiv contains the original IV value. 583*8fb009dcSAndroid Build Coastguard Worker uint8_t oiv[EVP_MAX_IV_LENGTH]; 584*8fb009dcSAndroid Build Coastguard Worker 585*8fb009dcSAndroid Build Coastguard Worker // iv contains the current IV value, which may have been updated. 586*8fb009dcSAndroid Build Coastguard Worker uint8_t iv[EVP_MAX_IV_LENGTH]; 587*8fb009dcSAndroid Build Coastguard Worker 588*8fb009dcSAndroid Build Coastguard Worker // buf contains a partial block which is used by, for example, CTR mode to 589*8fb009dcSAndroid Build Coastguard Worker // store unused keystream bytes. 590*8fb009dcSAndroid Build Coastguard Worker uint8_t buf[EVP_MAX_BLOCK_LENGTH]; 591*8fb009dcSAndroid Build Coastguard Worker 592*8fb009dcSAndroid Build Coastguard Worker // buf_len contains the number of bytes of a partial block contained in 593*8fb009dcSAndroid Build Coastguard Worker // |buf|. 594*8fb009dcSAndroid Build Coastguard Worker int buf_len; 595*8fb009dcSAndroid Build Coastguard Worker 596*8fb009dcSAndroid Build Coastguard Worker // num contains the number of bytes of |iv| which are valid for modes that 597*8fb009dcSAndroid Build Coastguard Worker // manage partial blocks themselves. 598*8fb009dcSAndroid Build Coastguard Worker unsigned num; 599*8fb009dcSAndroid Build Coastguard Worker 600*8fb009dcSAndroid Build Coastguard Worker // final_used is non-zero if the |final| buffer contains plaintext. 601*8fb009dcSAndroid Build Coastguard Worker int final_used; 602*8fb009dcSAndroid Build Coastguard Worker 603*8fb009dcSAndroid Build Coastguard Worker uint8_t final[EVP_MAX_BLOCK_LENGTH]; // possible final block 604*8fb009dcSAndroid Build Coastguard Worker 605*8fb009dcSAndroid Build Coastguard Worker // Has this structure been rendered unusable by a failure. 606*8fb009dcSAndroid Build Coastguard Worker int poisoned; 607*8fb009dcSAndroid Build Coastguard Worker } /* EVP_CIPHER_CTX */; 608*8fb009dcSAndroid Build Coastguard Worker 609*8fb009dcSAndroid Build Coastguard Worker typedef struct evp_cipher_info_st { 610*8fb009dcSAndroid Build Coastguard Worker const EVP_CIPHER *cipher; 611*8fb009dcSAndroid Build Coastguard Worker unsigned char iv[EVP_MAX_IV_LENGTH]; 612*8fb009dcSAndroid Build Coastguard Worker } EVP_CIPHER_INFO; 613*8fb009dcSAndroid Build Coastguard Worker 614*8fb009dcSAndroid Build Coastguard Worker 615*8fb009dcSAndroid Build Coastguard Worker #if defined(__cplusplus) 616*8fb009dcSAndroid Build Coastguard Worker } // extern C 617*8fb009dcSAndroid Build Coastguard Worker 618*8fb009dcSAndroid Build Coastguard Worker #if !defined(BORINGSSL_NO_CXX) 619*8fb009dcSAndroid Build Coastguard Worker extern "C++" { 620*8fb009dcSAndroid Build Coastguard Worker 621*8fb009dcSAndroid Build Coastguard Worker BSSL_NAMESPACE_BEGIN 622*8fb009dcSAndroid Build Coastguard Worker 623*8fb009dcSAndroid Build Coastguard Worker BORINGSSL_MAKE_DELETER(EVP_CIPHER_CTX, EVP_CIPHER_CTX_free) 624*8fb009dcSAndroid Build Coastguard Worker 625*8fb009dcSAndroid Build Coastguard Worker using ScopedEVP_CIPHER_CTX = 626*8fb009dcSAndroid Build Coastguard Worker internal::StackAllocated<EVP_CIPHER_CTX, int, EVP_CIPHER_CTX_init, 627*8fb009dcSAndroid Build Coastguard Worker EVP_CIPHER_CTX_cleanup>; 628*8fb009dcSAndroid Build Coastguard Worker 629*8fb009dcSAndroid Build Coastguard Worker BSSL_NAMESPACE_END 630*8fb009dcSAndroid Build Coastguard Worker 631*8fb009dcSAndroid Build Coastguard Worker } // extern C++ 632*8fb009dcSAndroid Build Coastguard Worker #endif 633*8fb009dcSAndroid Build Coastguard Worker 634*8fb009dcSAndroid Build Coastguard Worker #endif 635*8fb009dcSAndroid Build Coastguard Worker 636*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_AES_KEY_SETUP_FAILED 100 637*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_BAD_DECRYPT 101 638*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_BAD_KEY_LENGTH 102 639*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_BUFFER_TOO_SMALL 103 640*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_CTRL_NOT_IMPLEMENTED 104 641*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_CTRL_OPERATION_NOT_IMPLEMENTED 105 642*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH 106 643*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_INITIALIZATION_ERROR 107 644*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_INPUT_NOT_INITIALIZED 108 645*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_INVALID_AD_SIZE 109 646*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_INVALID_KEY_LENGTH 110 647*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_INVALID_NONCE_SIZE 111 648*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_INVALID_OPERATION 112 649*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_IV_TOO_LARGE 113 650*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_NO_CIPHER_SET 114 651*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_OUTPUT_ALIASES_INPUT 115 652*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_TAG_TOO_LARGE 116 653*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_TOO_LARGE 117 654*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_UNSUPPORTED_AD_SIZE 118 655*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_UNSUPPORTED_INPUT_SIZE 119 656*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_UNSUPPORTED_KEY_SIZE 120 657*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_UNSUPPORTED_NONCE_SIZE 121 658*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_UNSUPPORTED_TAG_SIZE 122 659*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_WRONG_FINAL_BLOCK_LENGTH 123 660*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_NO_DIRECTION_SET 124 661*8fb009dcSAndroid Build Coastguard Worker #define CIPHER_R_INVALID_NONCE 125 662*8fb009dcSAndroid Build Coastguard Worker 663*8fb009dcSAndroid Build Coastguard Worker #endif // OPENSSL_HEADER_CIPHER_H 664