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