cipher.h 28 KB

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