You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

463 line
18 KiB

  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. const EVP_CIPHER *EVP_rc4(void);
  68. const EVP_CIPHER *EVP_des_cbc(void);
  69. const EVP_CIPHER *EVP_des_ede3_cbc(void);
  70. const EVP_CIPHER *EVP_aes_128_ecb(void);
  71. const EVP_CIPHER *EVP_aes_128_cbc(void);
  72. const EVP_CIPHER *EVP_aes_128_ctr(void);
  73. const EVP_CIPHER *EVP_aes_128_gcm(void);
  74. const EVP_CIPHER *EVP_aes_256_ecb(void);
  75. const EVP_CIPHER *EVP_aes_256_cbc(void);
  76. const EVP_CIPHER *EVP_aes_256_ctr(void);
  77. const EVP_CIPHER *EVP_aes_256_gcm(void);
  78. /* EVP_enc_null returns a 'cipher' that passes plaintext through as
  79. * ciphertext. */
  80. const EVP_CIPHER *EVP_enc_null(void);
  81. /* EVP_get_cipherbynid returns the cipher corresponding to the given NID, or
  82. * NULL if no such cipher is known. */
  83. const EVP_CIPHER *EVP_get_cipherbynid(int nid);
  84. /* Cipher context allocation.
  85. *
  86. * An |EVP_CIPHER_CTX| represents the state of an encryption or decryption in
  87. * progress. */
  88. /* EVP_CIPHER_CTX_init initialises an, already allocated, |EVP_CIPHER_CTX|. */
  89. void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx);
  90. /* EVP_CIPHER_CTX_new allocates a fresh |EVP_CIPHER_CTX|, calls
  91. * |EVP_CIPHER_CTX_init| and returns it, or NULL on allocation failure. */
  92. EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void);
  93. /* EVP_CIPHER_CTX_cleanup frees any memory referenced by |ctx|. It returns one
  94. * on success and zero otherwise. */
  95. int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *ctx);
  96. /* EVP_CIPHER_CTX_free calls |EVP_CIPHER_CTX_cleanup| on |ctx| and then frees
  97. * |ctx| itself. */
  98. void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx);
  99. /* EVP_CIPHER_CTX_copy sets |out| to be a duplicate of the current state of
  100. * |in|. The |out| argument must have been previously initialised. */
  101. int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in);
  102. /* Cipher context configuration. */
  103. /* EVP_CipherInit_ex configures |ctx| for a fresh encryption (or decryption, if
  104. * |enc| is zero) operation using |cipher|. If |ctx| has been previously
  105. * configured with a cipher then |cipher|, |key| and |iv| may be |NULL| and
  106. * |enc| may be -1 to reuse the previous values. The operation will use |key|
  107. * as the key and |iv| as the IV (if any). These should have the correct
  108. * lengths given by |EVP_CIPHER_key_length| and |EVP_CIPHER_iv_length|. It
  109. * returns one on success and zero on error. */
  110. int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
  111. ENGINE *engine, const uint8_t *key, const uint8_t *iv,
  112. int enc);
  113. /* EVP_EncryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to one. */
  114. int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
  115. ENGINE *impl, const uint8_t *key, const uint8_t *iv);
  116. /* EVP_DecryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to zero. */
  117. int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
  118. ENGINE *impl, const uint8_t *key, const uint8_t *iv);
  119. /* Cipher operations. */
  120. /* EVP_EncryptUpdate encrypts |in_len| bytes from |in| to |out|. The number
  121. * of output bytes may be up to |in_len| plus the block length minus one and
  122. * |out| must have sufficient space. The number of bytes actually output is
  123. * written to |*out_len|. It returns one on success and zero otherwise. */
  124. int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len,
  125. const uint8_t *in, int in_len);
  126. /* EVP_EncryptFinal_ex writes at most a block of ciphertext to |out| and sets
  127. * |*out_len| to the number of bytes written. If padding is enabled (the
  128. * default) then standard padding is applied to create the final block. If
  129. * padding is disabled (with |EVP_CIPHER_CTX_set_padding|) then any partial
  130. * block remaining will cause an error. The function returns one on success and
  131. * zero otherwise. */
  132. int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len);
  133. /* EVP_DecryptUpdate decrypts |in_len| bytes from |in| to |out|. The number of
  134. * output bytes may be up to |in_len| plus the block length minus one and |out|
  135. * must have sufficient space. The number of bytes actually output is written
  136. * to |*out_len|. It returns one on success and zero otherwise. */
  137. int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len,
  138. const uint8_t *in, int in_len);
  139. /* EVP_DecryptFinal_ex writes at most a block of ciphertext to |out| and sets
  140. * |*out_len| to the number of bytes written. If padding is enabled (the
  141. * default) then padding is removed from the final block.
  142. *
  143. * WARNING: it is unsafe to call this function with unauthenticted
  144. * ciphertext if padding is enabled. */
  145. int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out, int *out_len);
  146. /* EVP_Cipher performs a one-shot encryption/decryption operation. No partial
  147. * blocks etc are maintained between calls. It returns the number of bytes
  148. * written or -1 on error.
  149. *
  150. * WARNING: this differs from the usual return value convention. */
  151. int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
  152. size_t in_len);
  153. /* EVP_CipherUpdate calls either |EVP_EncryptUpdate| or |EVP_DecryptUpdate|
  154. * depending on how |ctx| has been setup. */
  155. int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len,
  156. const uint8_t *in, int in_len);
  157. /* EVP_CipherFinal_ex calls either |EVP_EncryptFinal_ex| or
  158. * |EVP_DecryptFinal_ex| depending on how |ctx| has been setup. */
  159. int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out, int *out_len);
  160. /* Cipher context accessors. */
  161. /* EVP_CIPHER_CTX_cipher returns the |EVP_CIPHER| underlying |ctx|, or NULL if
  162. * none has been set. */
  163. const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *ctx);
  164. /* EVP_CIPHER_CTX_nid returns a NID identifying the |EVP_CIPHER| underlying
  165. * |ctx| (e.g. |NID_rc4|). It will crash if no cipher has been configured. */
  166. int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx);
  167. /* EVP_CIPHER_CTX_block_size returns the block size, in bytes, of the cipher
  168. * underlying |ctx|, or one if the cipher is a stream cipher. It will crash if
  169. * no cipher has been configured. */
  170. unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx);
  171. /* EVP_CIPHER_CTX_key_length returns the key size, in bytes, of the cipher
  172. * underlying |ctx| or zero if no cipher has been configured. */
  173. unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx);
  174. /* EVP_CIPHER_CTX_iv_length returns the IV size, in bytes, of the cipher
  175. * underlying |ctx|. It will crash if no cipher has been configured. */
  176. unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx);
  177. /* EVP_CIPHER_CTX_get_app_data returns the opaque, application data pointer for
  178. * |ctx|, or NULL if none has been set. */
  179. void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx);
  180. /* EVP_CIPHER_CTX_set_app_data sets the opaque, application data pointer for
  181. * |ctx| to |data|. */
  182. void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx, void *data);
  183. /* EVP_CIPHER_CTX_flags returns a value which is the OR of zero or more
  184. * |EVP_CIPH_*| flags. It will crash if no cipher has been configured. */
  185. uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx);
  186. /* EVP_CIPHER_CTX_mode returns one of the |EVP_CIPH_*| cipher mode values
  187. * enumerated below. It will crash if no cipher has been configured. */
  188. uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx);
  189. /* EVP_CIPHER_CTX_ctrl is an |ioctl| like function. The |command| argument
  190. * should be one of the |EVP_CTRL_*| values. The |arg| and |ptr| arguments are
  191. * specific to the command in question. */
  192. int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command, int arg, void *ptr);
  193. /* EVP_CIPHER_CTX_set_padding sets whether padding is enabled for |ctx| and
  194. * returns one. Pass a non-zero |pad| to enable padding (the default) or zero
  195. * to disable. */
  196. int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad);
  197. /* Cipher accessors. */
  198. /* EVP_CIPHER_nid returns a NID identifing |cipher|. (For example,
  199. * |NID_rc4|.) */
  200. int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
  201. /* EVP_CIPHER_name returns the short name for |cipher| or NULL if no name is
  202. * known. */
  203. const char *EVP_CIPHER_name(const EVP_CIPHER *cipher);
  204. /* EVP_CIPHER_block_size returns the block size, in bytes, for |cipher|, or one
  205. * if |cipher| is a stream cipher. */
  206. unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
  207. /* EVP_CIPHER_key_length returns the key size, in bytes, for |cipher|. If
  208. * |cipher| can take a variable key length then this function returns the
  209. * default key length and |EVP_CIPHER_flags| will return a value with
  210. * |EVP_CIPH_VARIABLE_LENGTH| set. */
  211. unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
  212. /* EVP_CIPHER_iv_length returns the IV size, in bytes, of |cipher|, or zero if
  213. * |cipher| doesn't take an IV. */
  214. unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
  215. /* EVP_CIPHER_flags returns a value which is the OR of zero or more
  216. * |EVP_CIPH_*| flags. */
  217. uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher);
  218. /* EVP_CIPHER_mode returns one of the cipher mode values enumerated below. */
  219. uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher);
  220. /* Key derivation. */
  221. /* EVP_BytesToKey generates a key and IV for the cipher |type| by iterating
  222. * |md| |count| times using |data| and |salt|. On entry, the |key| and |iv|
  223. * buffers must have enough space to hold a key and IV for |type|. It returns
  224. * the length of the key on success or zero on error. */
  225. int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md,
  226. const uint8_t *salt, const uint8_t *data, size_t data_len,
  227. unsigned count, uint8_t *key, uint8_t *iv);
  228. /* Cipher modes (for |EVP_CIPHER_mode|). */
  229. #define EVP_CIPH_STREAM_CIPHER 0x0
  230. #define EVP_CIPH_ECB_MODE 0x1
  231. #define EVP_CIPH_CBC_MODE 0x2
  232. #define EVP_CIPH_CFB_MODE 0x3
  233. #define EVP_CIPH_OFB_MODE 0x4
  234. #define EVP_CIPH_CTR_MODE 0x5
  235. #define EVP_CIPH_GCM_MODE 0x6
  236. /* Cipher flags (for |EVP_CIPHER_flags|). */
  237. /* EVP_CIPH_VARIABLE_LENGTH indicates that the cipher takes a variable length
  238. * key. */
  239. #define EVP_CIPH_VARIABLE_LENGTH 0x40
  240. /* EVP_CIPH_ALWAYS_CALL_INIT indicates that the |init| function for the cipher
  241. * should always be called when initialising a new operation, even if the key
  242. * is NULL to indicate that the same key is being used. */
  243. #define EVP_CIPH_ALWAYS_CALL_INIT 0x80
  244. /* EVP_CIPH_CUSTOM_IV indicates that the cipher manages the IV itself rather
  245. * than keeping it in the |iv| member of |EVP_CIPHER_CTX|. */
  246. #define EVP_CIPH_CUSTOM_IV 0x100
  247. /* EVP_CIPH_CTRL_INIT indicates that EVP_CTRL_INIT should be used when
  248. * initialising an |EVP_CIPHER_CTX|. */
  249. #define EVP_CIPH_CTRL_INIT 0x200
  250. /* EVP_CIPH_FLAG_CUSTOM_CIPHER indicates that the cipher manages blocking
  251. * itself. This causes EVP_(En|De)crypt_ex to be simple wrapper functions. */
  252. #define EVP_CIPH_FLAG_CUSTOM_CIPHER 0x400
  253. /* EVP_CIPH_FLAG_AEAD_CIPHER specifies that the cipher is an AEAD. This is an
  254. * older version of the proper AEAD interface. See aead.h for the current
  255. * one. */
  256. #define EVP_CIPH_FLAG_AEAD_CIPHER 0x800
  257. /* Private functions. */
  258. /* EVP_CIPH_NO_PADDING disables padding in block ciphers. */
  259. #define EVP_CIPH_NO_PADDING 0x800
  260. /* EVP_CIPHER_CTX_ctrl commands. */
  261. #define EVP_CTRL_INIT 0x0
  262. #define EVP_CTRL_SET_KEY_LENGTH 0x1
  263. #define EVP_CTRL_GET_RC2_KEY_BITS 0x2
  264. #define EVP_CTRL_SET_RC2_KEY_BITS 0x3
  265. #define EVP_CTRL_GET_RC5_ROUNDS 0x4
  266. #define EVP_CTRL_SET_RC5_ROUNDS 0x5
  267. #define EVP_CTRL_RAND_KEY 0x6
  268. #define EVP_CTRL_PBE_PRF_NID 0x7
  269. #define EVP_CTRL_COPY 0x8
  270. #define EVP_CTRL_GCM_SET_IVLEN 0x9
  271. #define EVP_CTRL_GCM_GET_TAG 0x10
  272. #define EVP_CTRL_GCM_SET_TAG 0x11
  273. #define EVP_CTRL_GCM_SET_IV_FIXED 0x12
  274. #define EVP_CTRL_GCM_IV_GEN 0x13
  275. #define EVP_CTRL_AEAD_SET_MAC_KEY 0x17
  276. /* Set the GCM invocation field, decrypt only */
  277. #define EVP_CTRL_GCM_SET_IV_INV 0x18
  278. /* GCM TLS constants */
  279. /* Length of fixed part of IV derived from PRF */
  280. #define EVP_GCM_TLS_FIXED_IV_LEN 4
  281. /* Length of explicit part of IV part of TLS records */
  282. #define EVP_GCM_TLS_EXPLICIT_IV_LEN 8
  283. /* Length of tag for TLS */
  284. #define EVP_GCM_TLS_TAG_LEN 16
  285. #define EVP_MAX_KEY_LENGTH 64
  286. #define EVP_MAX_IV_LENGTH 16
  287. #define EVP_MAX_BLOCK_LENGTH 32
  288. struct evp_cipher_ctx_st {
  289. /* cipher contains the underlying cipher for this context. */
  290. const EVP_CIPHER *cipher;
  291. /* app_data is a pointer to opaque, user data. */
  292. void *app_data; /* application stuff */
  293. /* cipher_data points to the |cipher| specific state. */
  294. void *cipher_data;
  295. /* key_len contains the length of the key, which may differ from
  296. * |cipher->key_len| if the cipher can take a variable key length. */
  297. unsigned key_len;
  298. /* encrypt is one if encrypting and zero if decrypting. */
  299. int encrypt;
  300. /* flags contains the OR of zero or more |EVP_CIPH_*| flags, above. */
  301. uint32_t flags;
  302. /* oiv contains the original IV value. */
  303. uint8_t oiv[EVP_MAX_IV_LENGTH];
  304. /* iv contains the current IV value, which may have been updated. */
  305. uint8_t iv[EVP_MAX_IV_LENGTH];
  306. /* buf contains a partial block which is used by, for example, CTR mode to
  307. * store unused keystream bytes. */
  308. uint8_t buf[EVP_MAX_BLOCK_LENGTH];
  309. /* buf_len contains the number of bytes of a partial block contained in
  310. * |buf|. */
  311. int buf_len;
  312. /* num contains the number of bytes of |iv| which are valid for modes that
  313. * manage partial blocks themselves. */
  314. int num;
  315. /* final_used is non-zero if the |final| buffer contains plaintext. */
  316. int final_used;
  317. /* block_mask contains |cipher->block_size| minus one. (The block size
  318. * assumed to be a power of two.) */
  319. int block_mask;
  320. uint8_t final[EVP_MAX_BLOCK_LENGTH]; /* possible final block */
  321. } /* EVP_CIPHER_CTX */;
  322. typedef struct evp_cipher_info_st {
  323. const EVP_CIPHER *cipher;
  324. unsigned char iv[EVP_MAX_IV_LENGTH];
  325. } EVP_CIPHER_INFO;
  326. #if defined(__cplusplus)
  327. } /* extern C */
  328. #endif
  329. #define CIPHER_F_EVP_CipherInit_ex 100
  330. #define CIPHER_F_EVP_EncryptFinal_ex 101
  331. #define CIPHER_F_EVP_DecryptFinal_ex 102
  332. #define CIPHER_F_EVP_CIPHER_CTX_ctrl 103
  333. #define CIPHER_F_aes_init_key 104
  334. #define CIPHER_F_aesni_init_key 105
  335. #define CIPHER_F_EVP_CIPHER_CTX_copy 106
  336. #define CIPHER_F_EVP_AEAD_CTX_open 107
  337. #define CIPHER_F_EVP_AEAD_CTX_init 108
  338. #define CIPHER_F_EVP_AEAD_CTX_seal 109
  339. #define CIPHER_F_aead_aes_gcm_seal 110
  340. #define CIPHER_F_aead_aes_gcm_open 111
  341. #define CIPHER_F_aead_aes_gcm_init 112
  342. #define CIPHER_F_aead_chacha20_poly1305_init 113
  343. #define CIPHER_F_aead_chacha20_poly1305_open 114
  344. #define CIPHER_F_aead_chacha20_poly1305_seal 115
  345. #define CIPHER_F_aead_rc4_md5_tls_init 116
  346. #define CIPHER_F_aead_rc4_md5_tls_seal 117
  347. #define CIPHER_F_aead_rc4_md5_tls_open 118
  348. #define CIPHER_R_WRAP_MODE_NOT_ALLOWED 100
  349. #define CIPHER_R_AES_KEY_SETUP_FAILED 101
  350. #define CIPHER_R_INPUT_NOT_INITIALIZED 102
  351. #define CIPHER_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH 103
  352. #define CIPHER_R_INITIALIZATION_ERROR 104
  353. #define CIPHER_R_CTRL_NOT_IMPLEMENTED 105
  354. #define CIPHER_R_NO_CIPHER_SET 106
  355. #define CIPHER_R_BAD_DECRYPT 107
  356. #define CIPHER_R_WRONG_FINAL_BLOCK_LENGTH 108
  357. #define CIPHER_R_CTRL_OPERATION_NOT_IMPLEMENTED 109
  358. #define CIPHER_R_TAG_TOO_LARGE 110
  359. #define CIPHER_R_BAD_KEY_LENGTH 111
  360. #define CIPHER_R_BUFFER_TOO_SMALL 112
  361. #define CIPHER_R_OUTPUT_ALIASES_INPUT 113
  362. #define CIPHER_R_UNSUPPORTED_KEY_SIZE 114
  363. #define CIPHER_R_TOO_LARGE 115
  364. #define CIPHER_R_IV_TOO_LARGE 116
  365. #define CIPHER_R_INVALID_AD_SIZE 117
  366. #define CIPHER_R_INVALID_AD 118
  367. #endif /* OPENSSL_HEADER_CIPHER_H */