blob: 70e104dd01ef80c55b9d8feb9231ecff5560637f [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
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070075OPENSSL_EXPORT const EVP_CIPHER *EVP_rc4(void);
Adam Langley95c29f32014-06-20 12:00:00 -070076
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070077OPENSSL_EXPORT const EVP_CIPHER *EVP_des_cbc(void);
78OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_cbc(void);
Adam Langley95c29f32014-06-20 12:00:00 -070079
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070080OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ecb(void);
81OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cbc(void);
82OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ctr(void);
Adam Langley087930f2015-02-24 12:44:40 -080083OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ofb(void);
Adam Langley95c29f32014-06-20 12:00:00 -070084
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070085OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ecb(void);
86OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cbc(void);
87OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ctr(void);
Adam Langley087930f2015-02-24 12:44:40 -080088OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ofb(void);
Matt Braithwaite12fe1b22015-07-28 16:49:58 -070089OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_xts(void);
David Benjamin4841ce42014-12-15 03:59:02 -050090
91/* Deprecated AES-GCM implementations that set |EVP_CIPH_FLAG_CUSTOM_CIPHER|.
92 * Use |EVP_aead_aes_128_gcm| and |EVP_aead_aes_256_gcm| instead. */
93OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_gcm(void);
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070094OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_gcm(void);
Adam Langley95c29f32014-06-20 12:00:00 -070095
Adam Langley1049e262015-04-02 13:09:01 -070096/* Deprecated 192-bit version of AES. */
Adam Langley5dca0312015-05-04 17:41:23 -070097OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ecb(void);
Adam Langley1049e262015-04-02 13:09:01 -070098OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cbc(void);
99OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ctr(void);
100OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_gcm(void);
101
Adam Langley95c29f32014-06-20 12:00:00 -0700102/* EVP_enc_null returns a 'cipher' that passes plaintext through as
103 * ciphertext. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700104OPENSSL_EXPORT const EVP_CIPHER *EVP_enc_null(void);
Adam Langley95c29f32014-06-20 12:00:00 -0700105
Matt Braithwaitef92930e2015-08-04 14:44:53 -0700106/* EVP_rc2_cbc returns a cipher that implements 128-bit RC2 in CBC mode. */
107OPENSSL_EXPORT const EVP_CIPHER *EVP_rc2_cbc(void);
108
Adam Langleycc8fcf42014-08-21 10:48:32 -0700109/* EVP_rc2_40_cbc returns a cipher that implements 40-bit RC2 in CBC mode. This
110 * is obviously very, very weak and is included only in order to read PKCS#12
111 * files, which often encrypt the certificate chain using this cipher. It is
112 * deliberately not exported. */
113const EVP_CIPHER *EVP_rc2_40_cbc(void);
114
Adam Langley95c29f32014-06-20 12:00:00 -0700115/* EVP_get_cipherbynid returns the cipher corresponding to the given NID, or
116 * NULL if no such cipher is known. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700117OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid);
Adam Langley95c29f32014-06-20 12:00:00 -0700118
119
120/* Cipher context allocation.
121 *
122 * An |EVP_CIPHER_CTX| represents the state of an encryption or decryption in
123 * progress. */
124
125/* EVP_CIPHER_CTX_init initialises an, already allocated, |EVP_CIPHER_CTX|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700126OPENSSL_EXPORT void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700127
128/* EVP_CIPHER_CTX_new allocates a fresh |EVP_CIPHER_CTX|, calls
129 * |EVP_CIPHER_CTX_init| and returns it, or NULL on allocation failure. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700130OPENSSL_EXPORT EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void);
Adam Langley95c29f32014-06-20 12:00:00 -0700131
David Benjamin3f5917f2015-02-23 02:15:50 -0500132/* EVP_CIPHER_CTX_cleanup frees any memory referenced by |ctx|. It returns
133 * one. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700134OPENSSL_EXPORT int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700135
136/* EVP_CIPHER_CTX_free calls |EVP_CIPHER_CTX_cleanup| on |ctx| and then frees
137 * |ctx| itself. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700138OPENSSL_EXPORT void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700139
140/* EVP_CIPHER_CTX_copy sets |out| to be a duplicate of the current state of
141 * |in|. The |out| argument must have been previously initialised. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700142OPENSSL_EXPORT int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out,
143 const EVP_CIPHER_CTX *in);
Adam Langley95c29f32014-06-20 12:00:00 -0700144
145
146/* Cipher context configuration. */
147
148/* EVP_CipherInit_ex configures |ctx| for a fresh encryption (or decryption, if
149 * |enc| is zero) operation using |cipher|. If |ctx| has been previously
150 * configured with a cipher then |cipher|, |key| and |iv| may be |NULL| and
151 * |enc| may be -1 to reuse the previous values. The operation will use |key|
152 * as the key and |iv| as the IV (if any). These should have the correct
153 * lengths given by |EVP_CIPHER_key_length| and |EVP_CIPHER_iv_length|. It
154 * returns one on success and zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700155OPENSSL_EXPORT int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,
156 const EVP_CIPHER *cipher, ENGINE *engine,
157 const uint8_t *key, const uint8_t *iv,
158 int enc);
Adam Langley95c29f32014-06-20 12:00:00 -0700159
160/* EVP_EncryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to one. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700161OPENSSL_EXPORT int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,
162 const EVP_CIPHER *cipher, ENGINE *impl,
163 const uint8_t *key, const uint8_t *iv);
Adam Langley95c29f32014-06-20 12:00:00 -0700164
165/* EVP_DecryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to zero. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700166OPENSSL_EXPORT int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,
167 const EVP_CIPHER *cipher, ENGINE *impl,
168 const uint8_t *key, const uint8_t *iv);
Adam Langley95c29f32014-06-20 12:00:00 -0700169
170
171/* Cipher operations. */
172
173/* EVP_EncryptUpdate encrypts |in_len| bytes from |in| to |out|. The number
174 * of output bytes may be up to |in_len| plus the block length minus one and
175 * |out| must have sufficient space. The number of bytes actually output is
176 * written to |*out_len|. It returns one on success and zero otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700177OPENSSL_EXPORT int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
178 int *out_len, const uint8_t *in,
179 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700180
181/* EVP_EncryptFinal_ex writes at most a block of ciphertext to |out| and sets
182 * |*out_len| to the number of bytes written. If padding is enabled (the
183 * default) then standard padding is applied to create the final block. If
184 * padding is disabled (with |EVP_CIPHER_CTX_set_padding|) then any partial
185 * block remaining will cause an error. The function returns one on success and
186 * zero otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700187OPENSSL_EXPORT int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
188 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700189
190/* EVP_DecryptUpdate decrypts |in_len| bytes from |in| to |out|. The number of
191 * output bytes may be up to |in_len| plus the block length minus one and |out|
192 * must have sufficient space. The number of bytes actually output is written
193 * to |*out_len|. It returns one on success and zero otherwise. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700194OPENSSL_EXPORT int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
195 int *out_len, const uint8_t *in,
196 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700197
198/* EVP_DecryptFinal_ex writes at most a block of ciphertext to |out| and sets
199 * |*out_len| to the number of bytes written. If padding is enabled (the
200 * default) then padding is removed from the final block.
201 *
202 * WARNING: it is unsafe to call this function with unauthenticted
203 * ciphertext if padding is enabled. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700204OPENSSL_EXPORT int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out,
205 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700206
207/* EVP_Cipher performs a one-shot encryption/decryption operation. No partial
David Benjamincf701882014-12-17 05:16:16 -0500208 * blocks are maintained between calls. However, any internal cipher state is
209 * still updated. For CBC-mode ciphers, the IV is updated to the final
210 * ciphertext block. For stream ciphers, the stream is advanced past the bytes
211 * used. It returns one on success and zero otherwise, unless |EVP_CIPHER_flags|
212 * has |EVP_CIPH_FLAG_CUSTOM_CIPHER| set. Then it returns the number of bytes
213 * written or -1 on error.
Adam Langley95c29f32014-06-20 12:00:00 -0700214 *
David Benjamin4841ce42014-12-15 03:59:02 -0500215 * WARNING: this differs from the usual return value convention when using
216 * |EVP_CIPH_FLAG_CUSTOM_CIPHER|.
217 *
218 * TODO(davidben): The normal ciphers currently never fail, even if, e.g.,
219 * |in_len| is not a multiple of the block size for CBC-mode decryption. The
220 * input just gets rounded up while the output gets truncated. This should
221 * either be officially documented or fail. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700222OPENSSL_EXPORT int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
223 const uint8_t *in, size_t in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700224
225/* EVP_CipherUpdate calls either |EVP_EncryptUpdate| or |EVP_DecryptUpdate|
226 * depending on how |ctx| has been setup. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700227OPENSSL_EXPORT int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
228 int *out_len, const uint8_t *in,
229 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700230
231/* EVP_CipherFinal_ex calls either |EVP_EncryptFinal_ex| or
232 * |EVP_DecryptFinal_ex| depending on how |ctx| has been setup. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700233OPENSSL_EXPORT int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
234 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700235
236
237/* Cipher context accessors. */
238
239/* EVP_CIPHER_CTX_cipher returns the |EVP_CIPHER| underlying |ctx|, or NULL if
240 * none has been set. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700241OPENSSL_EXPORT const EVP_CIPHER *EVP_CIPHER_CTX_cipher(
242 const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700243
244/* EVP_CIPHER_CTX_nid returns a NID identifying the |EVP_CIPHER| underlying
Brian Smith7d897a12015-03-16 01:19:32 -1000245 * |ctx| (e.g. |NID_aes_128_gcm|). It will crash if no cipher has been
246 * configured. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700247OPENSSL_EXPORT int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700248
249/* EVP_CIPHER_CTX_block_size returns the block size, in bytes, of the cipher
250 * underlying |ctx|, or one if the cipher is a stream cipher. It will crash if
251 * no cipher has been configured. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700252OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700253
254/* EVP_CIPHER_CTX_key_length returns the key size, in bytes, of the cipher
255 * underlying |ctx| or zero if no cipher has been configured. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700256OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700257
258/* EVP_CIPHER_CTX_iv_length returns the IV size, in bytes, of the cipher
259 * underlying |ctx|. It will crash if no cipher has been configured. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700260OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700261
262/* EVP_CIPHER_CTX_get_app_data returns the opaque, application data pointer for
263 * |ctx|, or NULL if none has been set. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700264OPENSSL_EXPORT void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700265
266/* EVP_CIPHER_CTX_set_app_data sets the opaque, application data pointer for
267 * |ctx| to |data|. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700268OPENSSL_EXPORT void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx,
269 void *data);
Adam Langley95c29f32014-06-20 12:00:00 -0700270
271/* EVP_CIPHER_CTX_flags returns a value which is the OR of zero or more
272 * |EVP_CIPH_*| flags. It will crash if no cipher has been configured. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700273OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700274
275/* EVP_CIPHER_CTX_mode returns one of the |EVP_CIPH_*| cipher mode values
276 * enumerated below. It will crash if no cipher has been configured. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700277OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700278
279/* EVP_CIPHER_CTX_ctrl is an |ioctl| like function. The |command| argument
280 * should be one of the |EVP_CTRL_*| values. The |arg| and |ptr| arguments are
281 * specific to the command in question. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700282OPENSSL_EXPORT int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command,
283 int arg, void *ptr);
Adam Langley95c29f32014-06-20 12:00:00 -0700284
285/* EVP_CIPHER_CTX_set_padding sets whether padding is enabled for |ctx| and
286 * returns one. Pass a non-zero |pad| to enable padding (the default) or zero
287 * to disable. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700288OPENSSL_EXPORT int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad);
Adam Langley95c29f32014-06-20 12:00:00 -0700289
Adam Langley539112f2014-08-22 11:06:41 -0700290/* EVP_CIPHER_CTX_set_key_length sets the key length for |ctx|. This is only
291 * valid for ciphers that can take a variable length key. It returns one on
292 * success and zero on error. */
293OPENSSL_EXPORT int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *ctx, unsigned key_len);
294
Adam Langley95c29f32014-06-20 12:00:00 -0700295
296/* Cipher accessors. */
297
298/* EVP_CIPHER_nid returns a NID identifing |cipher|. (For example,
Brian Smith7d897a12015-03-16 01:19:32 -1000299 * |NID_aes_128_gcm|.) */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700300OPENSSL_EXPORT int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700301
Adam Langley95c29f32014-06-20 12:00:00 -0700302/* EVP_CIPHER_block_size returns the block size, in bytes, for |cipher|, or one
303 * if |cipher| is a stream cipher. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700304OPENSSL_EXPORT unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700305
306/* EVP_CIPHER_key_length returns the key size, in bytes, for |cipher|. If
307 * |cipher| can take a variable key length then this function returns the
308 * default key length and |EVP_CIPHER_flags| will return a value with
309 * |EVP_CIPH_VARIABLE_LENGTH| set. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700310OPENSSL_EXPORT unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700311
312/* EVP_CIPHER_iv_length returns the IV size, in bytes, of |cipher|, or zero if
313 * |cipher| doesn't take an IV. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700314OPENSSL_EXPORT unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700315
316/* EVP_CIPHER_flags returns a value which is the OR of zero or more
317 * |EVP_CIPH_*| flags. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700318OPENSSL_EXPORT uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700319
320/* EVP_CIPHER_mode returns one of the cipher mode values enumerated below. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700321OPENSSL_EXPORT uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700322
323
324/* Key derivation. */
325
326/* EVP_BytesToKey generates a key and IV for the cipher |type| by iterating
327 * |md| |count| times using |data| and |salt|. On entry, the |key| and |iv|
328 * buffers must have enough space to hold a key and IV for |type|. It returns
329 * the length of the key on success or zero on error. */
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700330OPENSSL_EXPORT int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md,
331 const uint8_t *salt, const uint8_t *data,
332 size_t data_len, unsigned count, uint8_t *key,
333 uint8_t *iv);
Adam Langley95c29f32014-06-20 12:00:00 -0700334
335
336/* Cipher modes (for |EVP_CIPHER_mode|). */
337
338#define EVP_CIPH_STREAM_CIPHER 0x0
339#define EVP_CIPH_ECB_MODE 0x1
340#define EVP_CIPH_CBC_MODE 0x2
341#define EVP_CIPH_CFB_MODE 0x3
342#define EVP_CIPH_OFB_MODE 0x4
343#define EVP_CIPH_CTR_MODE 0x5
344#define EVP_CIPH_GCM_MODE 0x6
Matt Braithwaite12fe1b22015-07-28 16:49:58 -0700345#define EVP_CIPH_XTS_MODE 0x7
Adam Langley95c29f32014-06-20 12:00:00 -0700346
347
348/* Cipher flags (for |EVP_CIPHER_flags|). */
349
350/* EVP_CIPH_VARIABLE_LENGTH indicates that the cipher takes a variable length
351 * key. */
352#define EVP_CIPH_VARIABLE_LENGTH 0x40
353
354/* EVP_CIPH_ALWAYS_CALL_INIT indicates that the |init| function for the cipher
355 * should always be called when initialising a new operation, even if the key
356 * is NULL to indicate that the same key is being used. */
357#define EVP_CIPH_ALWAYS_CALL_INIT 0x80
358
359/* EVP_CIPH_CUSTOM_IV indicates that the cipher manages the IV itself rather
360 * than keeping it in the |iv| member of |EVP_CIPHER_CTX|. */
361#define EVP_CIPH_CUSTOM_IV 0x100
362
363/* EVP_CIPH_CTRL_INIT indicates that EVP_CTRL_INIT should be used when
364 * initialising an |EVP_CIPHER_CTX|. */
365#define EVP_CIPH_CTRL_INIT 0x200
366
367/* EVP_CIPH_FLAG_CUSTOM_CIPHER indicates that the cipher manages blocking
368 * itself. This causes EVP_(En|De)crypt_ex to be simple wrapper functions. */
369#define EVP_CIPH_FLAG_CUSTOM_CIPHER 0x400
370
371/* EVP_CIPH_FLAG_AEAD_CIPHER specifies that the cipher is an AEAD. This is an
372 * older version of the proper AEAD interface. See aead.h for the current
373 * one. */
374#define EVP_CIPH_FLAG_AEAD_CIPHER 0x800
375
Adam Langley7578f3f2014-07-24 17:42:11 -0700376/* EVP_CIPH_CUSTOM_COPY indicates that the |ctrl| callback should be called
377 * with |EVP_CTRL_COPY| at the end of normal |EVP_CIPHER_CTX_copy|
378 * processing. */
379#define EVP_CIPH_CUSTOM_COPY 0x1000
380
Adam Langley95c29f32014-06-20 12:00:00 -0700381
Adam Langley704453f2014-09-23 16:19:16 -0700382/* Deprecated functions */
383
384/* EVP_CipherInit acts like EVP_CipherInit_ex except that |EVP_CIPHER_CTX_init|
385 * is called on |cipher| first, if |cipher| is not NULL. */
386OPENSSL_EXPORT int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
387 const uint8_t *key, const uint8_t *iv,
388 int enc);
389
390/* EVP_EncryptInit calls |EVP_CipherInit| with |enc| equal to one. */
391OPENSSL_EXPORT int EVP_EncryptInit(EVP_CIPHER_CTX *ctx,
392 const EVP_CIPHER *cipher, const uint8_t *key,
393 const uint8_t *iv);
394
395/* EVP_DecryptInit calls |EVP_CipherInit| with |enc| equal to zero. */
396OPENSSL_EXPORT int EVP_DecryptInit(EVP_CIPHER_CTX *ctx,
397 const EVP_CIPHER *cipher, const uint8_t *key,
398 const uint8_t *iv);
399
400/* EVP_add_cipher_alias does nothing and returns one. */
401OPENSSL_EXPORT int EVP_add_cipher_alias(const char *a, const char *b);
402
403/* EVP_get_cipherbyname returns an |EVP_CIPHER| given a human readable name in
404 * |name|, or NULL if the name is unknown. */
405OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbyname(const char *name);
406
407
Adam Langley95c29f32014-06-20 12:00:00 -0700408/* Private functions. */
409
410/* EVP_CIPH_NO_PADDING disables padding in block ciphers. */
411#define EVP_CIPH_NO_PADDING 0x800
412
413/* EVP_CIPHER_CTX_ctrl commands. */
414#define EVP_CTRL_INIT 0x0
415#define EVP_CTRL_SET_KEY_LENGTH 0x1
416#define EVP_CTRL_GET_RC2_KEY_BITS 0x2
417#define EVP_CTRL_SET_RC2_KEY_BITS 0x3
418#define EVP_CTRL_GET_RC5_ROUNDS 0x4
419#define EVP_CTRL_SET_RC5_ROUNDS 0x5
420#define EVP_CTRL_RAND_KEY 0x6
421#define EVP_CTRL_PBE_PRF_NID 0x7
422#define EVP_CTRL_COPY 0x8
423#define EVP_CTRL_GCM_SET_IVLEN 0x9
424#define EVP_CTRL_GCM_GET_TAG 0x10
425#define EVP_CTRL_GCM_SET_TAG 0x11
426#define EVP_CTRL_GCM_SET_IV_FIXED 0x12
427#define EVP_CTRL_GCM_IV_GEN 0x13
Adam Langley95c29f32014-06-20 12:00:00 -0700428#define EVP_CTRL_AEAD_SET_MAC_KEY 0x17
429/* Set the GCM invocation field, decrypt only */
430#define EVP_CTRL_GCM_SET_IV_INV 0x18
431
432/* GCM TLS constants */
433/* Length of fixed part of IV derived from PRF */
434#define EVP_GCM_TLS_FIXED_IV_LEN 4
435/* Length of explicit part of IV part of TLS records */
436#define EVP_GCM_TLS_EXPLICIT_IV_LEN 8
437/* Length of tag for TLS */
438#define EVP_GCM_TLS_TAG_LEN 16
439
440#define EVP_MAX_KEY_LENGTH 64
441#define EVP_MAX_IV_LENGTH 16
442#define EVP_MAX_BLOCK_LENGTH 32
443
444struct evp_cipher_ctx_st {
445 /* cipher contains the underlying cipher for this context. */
446 const EVP_CIPHER *cipher;
447
448 /* app_data is a pointer to opaque, user data. */
449 void *app_data; /* application stuff */
450
451 /* cipher_data points to the |cipher| specific state. */
452 void *cipher_data;
453
454 /* key_len contains the length of the key, which may differ from
455 * |cipher->key_len| if the cipher can take a variable key length. */
456 unsigned key_len;
457
458 /* encrypt is one if encrypting and zero if decrypting. */
459 int encrypt;
460
461 /* flags contains the OR of zero or more |EVP_CIPH_*| flags, above. */
462 uint32_t flags;
463
464 /* oiv contains the original IV value. */
465 uint8_t oiv[EVP_MAX_IV_LENGTH];
466
467 /* iv contains the current IV value, which may have been updated. */
468 uint8_t iv[EVP_MAX_IV_LENGTH];
469
470 /* buf contains a partial block which is used by, for example, CTR mode to
471 * store unused keystream bytes. */
472 uint8_t buf[EVP_MAX_BLOCK_LENGTH];
473
474 /* buf_len contains the number of bytes of a partial block contained in
475 * |buf|. */
476 int buf_len;
477
478 /* num contains the number of bytes of |iv| which are valid for modes that
479 * manage partial blocks themselves. */
480 int num;
481
482 /* final_used is non-zero if the |final| buffer contains plaintext. */
483 int final_used;
484
485 /* block_mask contains |cipher->block_size| minus one. (The block size
486 * assumed to be a power of two.) */
487 int block_mask;
488
489 uint8_t final[EVP_MAX_BLOCK_LENGTH]; /* possible final block */
490} /* EVP_CIPHER_CTX */;
491
492typedef struct evp_cipher_info_st {
493 const EVP_CIPHER *cipher;
494 unsigned char iv[EVP_MAX_IV_LENGTH];
495} EVP_CIPHER_INFO;
496
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700497struct evp_cipher_st {
498 /* type contains a NID identifing the cipher. (e.g. NID_aes_128_gcm.) */
499 int nid;
500
501 /* block_size contains the block size, in bytes, of the cipher, or 1 for a
502 * stream cipher. */
503 unsigned block_size;
504
505 /* key_len contains the key size, in bytes, for the cipher. If the cipher
506 * takes a variable key size then this contains the default size. */
507 unsigned key_len;
508
509 /* iv_len contains the IV size, in bytes, or zero if inapplicable. */
510 unsigned iv_len;
511
512 /* ctx_size contains the size, in bytes, of the per-key context for this
513 * cipher. */
514 unsigned ctx_size;
515
516 /* flags contains the OR of a number of flags. See |EVP_CIPH_*|. */
517 uint32_t flags;
518
519 /* app_data is a pointer to opaque, user data. */
520 void *app_data;
521
522 int (*init)(EVP_CIPHER_CTX *ctx, const uint8_t *key, const uint8_t *iv,
523 int enc);
524
525 int (*cipher)(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
526 size_t inl);
527
David Benjamin3fa65f02015-05-15 19:11:57 -0400528 /* cleanup, if non-NULL, releases memory associated with the context. It is
529 * called if |EVP_CTRL_INIT| succeeds. Note that |init| may not have been
530 * called at this point. */
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700531 void (*cleanup)(EVP_CIPHER_CTX *);
532
533 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr);
534};
535
Adam Langley95c29f32014-06-20 12:00:00 -0700536
537#if defined(__cplusplus)
538} /* extern C */
539#endif
540
David Benjamin689be0f2015-02-11 15:55:26 -0500541#define CIPHER_R_AES_KEY_SETUP_FAILED 100
542#define CIPHER_R_BAD_DECRYPT 101
543#define CIPHER_R_BAD_KEY_LENGTH 102
544#define CIPHER_R_BUFFER_TOO_SMALL 103
545#define CIPHER_R_CTRL_NOT_IMPLEMENTED 104
546#define CIPHER_R_CTRL_OPERATION_NOT_IMPLEMENTED 105
547#define CIPHER_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH 106
548#define CIPHER_R_INITIALIZATION_ERROR 107
549#define CIPHER_R_INPUT_NOT_INITIALIZED 108
550#define CIPHER_R_INVALID_AD_SIZE 109
551#define CIPHER_R_INVALID_KEY_LENGTH 110
552#define CIPHER_R_INVALID_NONCE_SIZE 111
553#define CIPHER_R_INVALID_OPERATION 112
554#define CIPHER_R_IV_TOO_LARGE 113
555#define CIPHER_R_NO_CIPHER_SET 114
556#define CIPHER_R_OUTPUT_ALIASES_INPUT 115
557#define CIPHER_R_TAG_TOO_LARGE 116
558#define CIPHER_R_TOO_LARGE 117
559#define CIPHER_R_UNSUPPORTED_AD_SIZE 118
560#define CIPHER_R_UNSUPPORTED_INPUT_SIZE 119
561#define CIPHER_R_UNSUPPORTED_KEY_SIZE 120
562#define CIPHER_R_UNSUPPORTED_NONCE_SIZE 121
563#define CIPHER_R_UNSUPPORTED_TAG_SIZE 122
564#define CIPHER_R_WRONG_FINAL_BLOCK_LENGTH 123
David Benjaminb34f5102015-02-28 03:59:33 -0500565#define CIPHER_R_NO_DIRECTION_SET 124
Adam Langley95c29f32014-06-20 12:00:00 -0700566
567#endif /* OPENSSL_HEADER_CIPHER_H */