blob: 5c380a1643bf99939b416c52a4a69f2b97f3dfae [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* 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
Robert Sloan8f860b12017-08-28 07:37:06 -070067// Ciphers.
Adam Langleyd9e397b2015-01-22 14:27:53 -080068
69
Robert Sloan8f860b12017-08-28 07:37:06 -070070// Cipher primitives.
71//
72// The following functions return |EVP_CIPHER| objects that implement the named
73// cipher algorithm.
Adam Langleyd9e397b2015-01-22 14:27:53 -080074
75OPENSSL_EXPORT const EVP_CIPHER *EVP_rc4(void);
76
77OPENSSL_EXPORT const EVP_CIPHER *EVP_des_cbc(void);
Kenny Rootb8494592015-09-25 02:29:14 +000078OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ecb(void);
79OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede(void);
Robert Sloan572a4e22017-04-17 10:52:19 -070080OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3(void);
Kenny Rootb8494592015-09-25 02:29:14 +000081OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede_cbc(void);
Adam Langleyd9e397b2015-01-22 14:27:53 -080082OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_cbc(void);
83
84OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ecb(void);
85OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cbc(void);
86OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ctr(void);
Adam Langleye9ada862015-05-11 17:20:37 -070087OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ofb(void);
Adam Langleyd9e397b2015-01-22 14:27:53 -080088
89OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ecb(void);
90OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cbc(void);
91OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ctr(void);
Adam Langleye9ada862015-05-11 17:20:37 -070092OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ofb(void);
Kenny Rootb8494592015-09-25 02:29:14 +000093OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_xts(void);
Adam Langleyd9e397b2015-01-22 14:27:53 -080094
Robert Sloan8f860b12017-08-28 07:37:06 -070095// EVP_enc_null returns a 'cipher' that passes plaintext through as
96// ciphertext.
Adam Langleyd9e397b2015-01-22 14:27:53 -080097OPENSSL_EXPORT const EVP_CIPHER *EVP_enc_null(void);
98
Robert Sloan8f860b12017-08-28 07:37:06 -070099// EVP_rc2_cbc returns a cipher that implements 128-bit RC2 in CBC mode.
Kenny Rootb8494592015-09-25 02:29:14 +0000100OPENSSL_EXPORT const EVP_CIPHER *EVP_rc2_cbc(void);
101
Robert Sloan8f860b12017-08-28 07:37:06 -0700102// EVP_rc2_40_cbc returns a cipher that implements 40-bit RC2 in CBC mode. This
103// is obviously very, very weak and is included only in order to read PKCS#12
104// files, which often encrypt the certificate chain using this cipher. It is
105// deliberately not exported.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800106const EVP_CIPHER *EVP_rc2_40_cbc(void);
107
Robert Sloan8f860b12017-08-28 07:37:06 -0700108// EVP_get_cipherbynid returns the cipher corresponding to the given NID, or
109// NULL if no such cipher is known.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800110OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid);
111
112
Robert Sloan8f860b12017-08-28 07:37:06 -0700113// Cipher context allocation.
114//
115// An |EVP_CIPHER_CTX| represents the state of an encryption or decryption in
116// progress.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800117
Robert Sloan8f860b12017-08-28 07:37:06 -0700118// EVP_CIPHER_CTX_init initialises an, already allocated, |EVP_CIPHER_CTX|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800119OPENSSL_EXPORT void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx);
120
Robert Sloan8f860b12017-08-28 07:37:06 -0700121// EVP_CIPHER_CTX_new allocates a fresh |EVP_CIPHER_CTX|, calls
122// |EVP_CIPHER_CTX_init| and returns it, or NULL on allocation failure.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800123OPENSSL_EXPORT EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void);
124
Robert Sloan8f860b12017-08-28 07:37:06 -0700125// EVP_CIPHER_CTX_cleanup frees any memory referenced by |ctx|. It returns
126// one.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800127OPENSSL_EXPORT int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *ctx);
128
Robert Sloan8f860b12017-08-28 07:37:06 -0700129// EVP_CIPHER_CTX_free calls |EVP_CIPHER_CTX_cleanup| on |ctx| and then frees
130// |ctx| itself.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800131OPENSSL_EXPORT void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx);
132
Robert Sloan8f860b12017-08-28 07:37:06 -0700133// EVP_CIPHER_CTX_copy sets |out| to be a duplicate of the current state of
134// |in|. The |out| argument must have been previously initialised.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800135OPENSSL_EXPORT int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out,
136 const EVP_CIPHER_CTX *in);
137
Robert Sloan4562e9d2017-10-02 10:26:51 -0700138// EVP_CIPHER_CTX_reset calls |EVP_CIPHER_CTX_cleanup| followed by
139// |EVP_CIPHER_CTX_init|.
140OPENSSL_EXPORT void EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *ctx);
141
Adam Langleyd9e397b2015-01-22 14:27:53 -0800142
Robert Sloan8f860b12017-08-28 07:37:06 -0700143// Cipher context configuration.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800144
Robert Sloan8f860b12017-08-28 07:37:06 -0700145// EVP_CipherInit_ex configures |ctx| for a fresh encryption (or decryption, if
146// |enc| is zero) operation using |cipher|. If |ctx| has been previously
147// configured with a cipher then |cipher|, |key| and |iv| may be |NULL| and
148// |enc| may be -1 to reuse the previous values. The operation will use |key|
149// as the key and |iv| as the IV (if any). These should have the correct
150// lengths given by |EVP_CIPHER_key_length| and |EVP_CIPHER_iv_length|. It
151// returns one on success and zero on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800152OPENSSL_EXPORT int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,
153 const EVP_CIPHER *cipher, ENGINE *engine,
154 const uint8_t *key, const uint8_t *iv,
155 int enc);
156
Robert Sloan8f860b12017-08-28 07:37:06 -0700157// EVP_EncryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to one.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800158OPENSSL_EXPORT int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,
159 const EVP_CIPHER *cipher, ENGINE *impl,
160 const uint8_t *key, const uint8_t *iv);
161
Robert Sloan8f860b12017-08-28 07:37:06 -0700162// EVP_DecryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to zero.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800163OPENSSL_EXPORT int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,
164 const EVP_CIPHER *cipher, ENGINE *impl,
165 const uint8_t *key, const uint8_t *iv);
166
167
Robert Sloan8f860b12017-08-28 07:37:06 -0700168// Cipher operations.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800169
Robert Sloan8f860b12017-08-28 07:37:06 -0700170// EVP_EncryptUpdate encrypts |in_len| bytes from |in| to |out|. The number
171// of output bytes may be up to |in_len| plus the block length minus one and
172// |out| must have sufficient space. The number of bytes actually output is
173// written to |*out_len|. It returns one on success and zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800174OPENSSL_EXPORT int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
175 int *out_len, const uint8_t *in,
176 int in_len);
177
Robert Sloan8f860b12017-08-28 07:37:06 -0700178// EVP_EncryptFinal_ex writes at most a block of ciphertext to |out| and sets
179// |*out_len| to the number of bytes written. If padding is enabled (the
180// default) then standard padding is applied to create the final block. If
181// padding is disabled (with |EVP_CIPHER_CTX_set_padding|) then any partial
182// block remaining will cause an error. The function returns one on success and
183// zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800184OPENSSL_EXPORT int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
185 int *out_len);
186
Robert Sloan8f860b12017-08-28 07:37:06 -0700187// EVP_DecryptUpdate decrypts |in_len| bytes from |in| to |out|. The number of
188// output bytes may be up to |in_len| plus the block length minus one and |out|
189// must have sufficient space. The number of bytes actually output is written
190// to |*out_len|. It returns one on success and zero otherwise.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800191OPENSSL_EXPORT int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
192 int *out_len, const uint8_t *in,
193 int in_len);
194
Robert Sloan8f860b12017-08-28 07:37:06 -0700195// EVP_DecryptFinal_ex writes at most a block of ciphertext to |out| and sets
196// |*out_len| to the number of bytes written. If padding is enabled (the
197// default) then padding is removed from the final block.
198//
199// WARNING: it is unsafe to call this function with unauthenticated
200// ciphertext if padding is enabled.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800201OPENSSL_EXPORT int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out,
202 int *out_len);
203
Robert Sloan8f860b12017-08-28 07:37:06 -0700204// EVP_Cipher performs a one-shot encryption/decryption operation. No partial
205// blocks are maintained between calls. However, any internal cipher state is
206// still updated. For CBC-mode ciphers, the IV is updated to the final
207// ciphertext block. For stream ciphers, the stream is advanced past the bytes
208// used. It returns one on success and zero otherwise, unless |EVP_CIPHER_flags|
209// has |EVP_CIPH_FLAG_CUSTOM_CIPHER| set. Then it returns the number of bytes
210// written or -1 on error.
211//
212// WARNING: this differs from the usual return value convention when using
213// |EVP_CIPH_FLAG_CUSTOM_CIPHER|.
214//
215// TODO(davidben): The normal ciphers currently never fail, even if, e.g.,
216// |in_len| is not a multiple of the block size for CBC-mode decryption. The
217// input just gets rounded up while the output gets truncated. This should
218// either be officially documented or fail.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800219OPENSSL_EXPORT int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
220 const uint8_t *in, size_t in_len);
221
Robert Sloan8f860b12017-08-28 07:37:06 -0700222// EVP_CipherUpdate calls either |EVP_EncryptUpdate| or |EVP_DecryptUpdate|
223// depending on how |ctx| has been setup.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800224OPENSSL_EXPORT int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
225 int *out_len, const uint8_t *in,
226 int in_len);
227
Robert Sloan8f860b12017-08-28 07:37:06 -0700228// EVP_CipherFinal_ex calls either |EVP_EncryptFinal_ex| or
229// |EVP_DecryptFinal_ex| depending on how |ctx| has been setup.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800230OPENSSL_EXPORT int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
231 int *out_len);
232
233
Robert Sloan8f860b12017-08-28 07:37:06 -0700234// Cipher context accessors.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800235
Robert Sloan8f860b12017-08-28 07:37:06 -0700236// EVP_CIPHER_CTX_cipher returns the |EVP_CIPHER| underlying |ctx|, or NULL if
237// none has been set.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800238OPENSSL_EXPORT const EVP_CIPHER *EVP_CIPHER_CTX_cipher(
239 const EVP_CIPHER_CTX *ctx);
240
Robert Sloan8f860b12017-08-28 07:37:06 -0700241// EVP_CIPHER_CTX_nid returns a NID identifying the |EVP_CIPHER| underlying
242// |ctx| (e.g. |NID_aes_128_gcm|). It will crash if no cipher has been
243// configured.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800244OPENSSL_EXPORT int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx);
245
Robert Sloan8f860b12017-08-28 07:37:06 -0700246// EVP_CIPHER_CTX_block_size returns the block size, in bytes, of the cipher
247// underlying |ctx|, or one if the cipher is a stream cipher. It will crash if
248// no cipher has been configured.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800249OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx);
250
Robert Sloan8f860b12017-08-28 07:37:06 -0700251// EVP_CIPHER_CTX_key_length returns the key size, in bytes, of the cipher
252// underlying |ctx| or zero if no cipher has been configured.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800253OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx);
254
Robert Sloan8f860b12017-08-28 07:37:06 -0700255// EVP_CIPHER_CTX_iv_length returns the IV size, in bytes, of the cipher
256// underlying |ctx|. It will crash if no cipher has been configured.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800257OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx);
258
Robert Sloan8f860b12017-08-28 07:37:06 -0700259// EVP_CIPHER_CTX_get_app_data returns the opaque, application data pointer for
260// |ctx|, or NULL if none has been set.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800261OPENSSL_EXPORT void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx);
262
Robert Sloan8f860b12017-08-28 07:37:06 -0700263// EVP_CIPHER_CTX_set_app_data sets the opaque, application data pointer for
264// |ctx| to |data|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800265OPENSSL_EXPORT void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx,
266 void *data);
267
Robert Sloan8f860b12017-08-28 07:37:06 -0700268// EVP_CIPHER_CTX_flags returns a value which is the OR of zero or more
269// |EVP_CIPH_*| flags. It will crash if no cipher has been configured.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800270OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx);
271
Robert Sloan8f860b12017-08-28 07:37:06 -0700272// EVP_CIPHER_CTX_mode returns one of the |EVP_CIPH_*| cipher mode values
273// enumerated below. It will crash if no cipher has been configured.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800274OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx);
275
Robert Sloan8f860b12017-08-28 07:37:06 -0700276// EVP_CIPHER_CTX_ctrl is an |ioctl| like function. The |command| argument
277// should be one of the |EVP_CTRL_*| values. The |arg| and |ptr| arguments are
278// specific to the command in question.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800279OPENSSL_EXPORT int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command,
280 int arg, void *ptr);
281
Robert Sloan8f860b12017-08-28 07:37:06 -0700282// EVP_CIPHER_CTX_set_padding sets whether padding is enabled for |ctx| and
283// returns one. Pass a non-zero |pad| to enable padding (the default) or zero
284// to disable.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800285OPENSSL_EXPORT int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad);
286
Robert Sloan8f860b12017-08-28 07:37:06 -0700287// EVP_CIPHER_CTX_set_key_length sets the key length for |ctx|. This is only
288// valid for ciphers that can take a variable length key. It returns one on
289// success and zero on error.
Steven Valdezb0b45c62017-01-17 16:23:54 -0500290OPENSSL_EXPORT int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *ctx,
291 unsigned key_len);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800292
293
Robert Sloan8f860b12017-08-28 07:37:06 -0700294// Cipher accessors.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800295
Robert Sloan8f860b12017-08-28 07:37:06 -0700296// EVP_CIPHER_nid returns a NID identifying |cipher|. (For example,
297// |NID_aes_128_gcm|.)
Adam Langleyd9e397b2015-01-22 14:27:53 -0800298OPENSSL_EXPORT int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
299
Robert Sloan8f860b12017-08-28 07:37:06 -0700300// EVP_CIPHER_block_size returns the block size, in bytes, for |cipher|, or one
301// if |cipher| is a stream cipher.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800302OPENSSL_EXPORT unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
303
Robert Sloan8f860b12017-08-28 07:37:06 -0700304// EVP_CIPHER_key_length returns the key size, in bytes, for |cipher|. If
305// |cipher| can take a variable key length then this function returns the
306// default key length and |EVP_CIPHER_flags| will return a value with
307// |EVP_CIPH_VARIABLE_LENGTH| set.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800308OPENSSL_EXPORT unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
309
Robert Sloan8f860b12017-08-28 07:37:06 -0700310// EVP_CIPHER_iv_length returns the IV size, in bytes, of |cipher|, or zero if
311// |cipher| doesn't take an IV.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800312OPENSSL_EXPORT unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
313
Robert Sloan8f860b12017-08-28 07:37:06 -0700314// EVP_CIPHER_flags returns a value which is the OR of zero or more
315// |EVP_CIPH_*| flags.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800316OPENSSL_EXPORT uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher);
317
Robert Sloan8f860b12017-08-28 07:37:06 -0700318// EVP_CIPHER_mode returns one of the cipher mode values enumerated below.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800319OPENSSL_EXPORT uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher);
320
321
Robert Sloan8f860b12017-08-28 07:37:06 -0700322// Key derivation.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800323
Robert Sloan8f860b12017-08-28 07:37:06 -0700324// EVP_BytesToKey generates a key and IV for the cipher |type| by iterating
325// |md| |count| times using |data| and |salt|. On entry, the |key| and |iv|
326// buffers must have enough space to hold a key and IV for |type|. It returns
327// the length of the key on success or zero on error.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800328OPENSSL_EXPORT int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md,
329 const uint8_t *salt, const uint8_t *data,
330 size_t data_len, unsigned count, uint8_t *key,
331 uint8_t *iv);
332
333
Robert Sloan8f860b12017-08-28 07:37:06 -0700334// Cipher modes (for |EVP_CIPHER_mode|).
Adam Langleyd9e397b2015-01-22 14:27:53 -0800335
336#define EVP_CIPH_STREAM_CIPHER 0x0
337#define EVP_CIPH_ECB_MODE 0x1
338#define EVP_CIPH_CBC_MODE 0x2
339#define EVP_CIPH_CFB_MODE 0x3
340#define EVP_CIPH_OFB_MODE 0x4
341#define EVP_CIPH_CTR_MODE 0x5
342#define EVP_CIPH_GCM_MODE 0x6
Kenny Rootb8494592015-09-25 02:29:14 +0000343#define EVP_CIPH_XTS_MODE 0x7
Adam Langleyd9e397b2015-01-22 14:27:53 -0800344
345
Robert Sloan8f860b12017-08-28 07:37:06 -0700346// Cipher flags (for |EVP_CIPHER_flags|).
Adam Langleyd9e397b2015-01-22 14:27:53 -0800347
Robert Sloan8f860b12017-08-28 07:37:06 -0700348// EVP_CIPH_VARIABLE_LENGTH indicates that the cipher takes a variable length
349// key.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800350#define EVP_CIPH_VARIABLE_LENGTH 0x40
351
Robert Sloan8f860b12017-08-28 07:37:06 -0700352// EVP_CIPH_ALWAYS_CALL_INIT indicates that the |init| function for the cipher
353// should always be called when initialising a new operation, even if the key
354// is NULL to indicate that the same key is being used.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800355#define EVP_CIPH_ALWAYS_CALL_INIT 0x80
356
Robert Sloan8f860b12017-08-28 07:37:06 -0700357// EVP_CIPH_CUSTOM_IV indicates that the cipher manages the IV itself rather
358// than keeping it in the |iv| member of |EVP_CIPHER_CTX|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800359#define EVP_CIPH_CUSTOM_IV 0x100
360
Robert Sloan8f860b12017-08-28 07:37:06 -0700361// EVP_CIPH_CTRL_INIT indicates that EVP_CTRL_INIT should be used when
362// initialising an |EVP_CIPHER_CTX|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800363#define EVP_CIPH_CTRL_INIT 0x200
364
Robert Sloan8f860b12017-08-28 07:37:06 -0700365// EVP_CIPH_FLAG_CUSTOM_CIPHER indicates that the cipher manages blocking
366// itself. This causes EVP_(En|De)crypt_ex to be simple wrapper functions.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800367#define EVP_CIPH_FLAG_CUSTOM_CIPHER 0x400
368
Robert Sloan8f860b12017-08-28 07:37:06 -0700369// EVP_CIPH_FLAG_AEAD_CIPHER specifies that the cipher is an AEAD. This is an
370// older version of the proper AEAD interface. See aead.h for the current
371// one.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800372#define EVP_CIPH_FLAG_AEAD_CIPHER 0x800
373
Robert Sloan8f860b12017-08-28 07:37:06 -0700374// EVP_CIPH_CUSTOM_COPY indicates that the |ctrl| callback should be called
375// with |EVP_CTRL_COPY| at the end of normal |EVP_CIPHER_CTX_copy|
376// processing.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800377#define EVP_CIPH_CUSTOM_COPY 0x1000
378
379
Robert Sloan8f860b12017-08-28 07:37:06 -0700380// Deprecated functions
Adam Langleyd9e397b2015-01-22 14:27:53 -0800381
Robert Sloan8f860b12017-08-28 07:37:06 -0700382// EVP_CipherInit acts like EVP_CipherInit_ex except that |EVP_CIPHER_CTX_init|
383// is called on |cipher| first, if |cipher| is not NULL.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800384OPENSSL_EXPORT int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
385 const uint8_t *key, const uint8_t *iv,
386 int enc);
387
Robert Sloan8f860b12017-08-28 07:37:06 -0700388// EVP_EncryptInit calls |EVP_CipherInit| with |enc| equal to one.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800389OPENSSL_EXPORT int EVP_EncryptInit(EVP_CIPHER_CTX *ctx,
390 const EVP_CIPHER *cipher, const uint8_t *key,
391 const uint8_t *iv);
392
Robert Sloan8f860b12017-08-28 07:37:06 -0700393// EVP_DecryptInit calls |EVP_CipherInit| with |enc| equal to zero.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800394OPENSSL_EXPORT int EVP_DecryptInit(EVP_CIPHER_CTX *ctx,
395 const EVP_CIPHER *cipher, const uint8_t *key,
396 const uint8_t *iv);
397
Robert Sloan8f860b12017-08-28 07:37:06 -0700398// EVP_add_cipher_alias does nothing and returns one.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800399OPENSSL_EXPORT int EVP_add_cipher_alias(const char *a, const char *b);
400
Robert Sloan8f860b12017-08-28 07:37:06 -0700401// EVP_get_cipherbyname returns an |EVP_CIPHER| given a human readable name in
402// |name|, or NULL if the name is unknown.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800403OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbyname(const char *name);
404
Robert Sloan8f860b12017-08-28 07:37:06 -0700405// These AEADs are deprecated AES-GCM implementations that set
406// |EVP_CIPH_FLAG_CUSTOM_CIPHER|. Use |EVP_aead_aes_128_gcm| and
407// |EVP_aead_aes_256_gcm| instead.
Adam Langleyfad63272015-11-12 12:15:39 -0800408OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_gcm(void);
409OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_gcm(void);
410
Robert Sloan8f860b12017-08-28 07:37:06 -0700411// These are deprecated, 192-bit version of AES.
Adam Langleyfad63272015-11-12 12:15:39 -0800412OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ecb(void);
413OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cbc(void);
414OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ctr(void);
415OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_gcm(void);
416
Robert Sloan2e9e66a2017-09-25 09:08:29 -0700417// EVP_aes_128_cfb128 is only available in decrepit.
418OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cfb128(void);
419
Adam Langleyd9e397b2015-01-22 14:27:53 -0800420
Robert Sloan8f860b12017-08-28 07:37:06 -0700421// Private functions.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800422
Robert Sloan8f860b12017-08-28 07:37:06 -0700423// EVP_CIPH_NO_PADDING disables padding in block ciphers.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800424#define EVP_CIPH_NO_PADDING 0x800
425
Robert Sloan8f860b12017-08-28 07:37:06 -0700426// EVP_CIPHER_CTX_ctrl commands.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800427#define EVP_CTRL_INIT 0x0
428#define EVP_CTRL_SET_KEY_LENGTH 0x1
429#define EVP_CTRL_GET_RC2_KEY_BITS 0x2
430#define EVP_CTRL_SET_RC2_KEY_BITS 0x3
431#define EVP_CTRL_GET_RC5_ROUNDS 0x4
432#define EVP_CTRL_SET_RC5_ROUNDS 0x5
433#define EVP_CTRL_RAND_KEY 0x6
434#define EVP_CTRL_PBE_PRF_NID 0x7
435#define EVP_CTRL_COPY 0x8
436#define EVP_CTRL_GCM_SET_IVLEN 0x9
437#define EVP_CTRL_GCM_GET_TAG 0x10
438#define EVP_CTRL_GCM_SET_TAG 0x11
439#define EVP_CTRL_GCM_SET_IV_FIXED 0x12
440#define EVP_CTRL_GCM_IV_GEN 0x13
441#define EVP_CTRL_AEAD_SET_MAC_KEY 0x17
Robert Sloan8f860b12017-08-28 07:37:06 -0700442// Set the GCM invocation field, decrypt only
Adam Langleyd9e397b2015-01-22 14:27:53 -0800443#define EVP_CTRL_GCM_SET_IV_INV 0x18
444
Robert Sloan8f860b12017-08-28 07:37:06 -0700445// GCM TLS constants
446// Length of fixed part of IV derived from PRF
Adam Langleyd9e397b2015-01-22 14:27:53 -0800447#define EVP_GCM_TLS_FIXED_IV_LEN 4
Robert Sloan8f860b12017-08-28 07:37:06 -0700448// Length of explicit part of IV part of TLS records
Adam Langleyd9e397b2015-01-22 14:27:53 -0800449#define EVP_GCM_TLS_EXPLICIT_IV_LEN 8
Robert Sloan8f860b12017-08-28 07:37:06 -0700450// Length of tag for TLS
Adam Langleyd9e397b2015-01-22 14:27:53 -0800451#define EVP_GCM_TLS_TAG_LEN 16
452
453#define EVP_MAX_KEY_LENGTH 64
454#define EVP_MAX_IV_LENGTH 16
455#define EVP_MAX_BLOCK_LENGTH 32
456
457struct evp_cipher_ctx_st {
Robert Sloan8f860b12017-08-28 07:37:06 -0700458 // cipher contains the underlying cipher for this context.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800459 const EVP_CIPHER *cipher;
460
Robert Sloan8f860b12017-08-28 07:37:06 -0700461 // app_data is a pointer to opaque, user data.
462 void *app_data; // application stuff
Adam Langleyd9e397b2015-01-22 14:27:53 -0800463
Robert Sloan8f860b12017-08-28 07:37:06 -0700464 // cipher_data points to the |cipher| specific state.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800465 void *cipher_data;
466
Robert Sloan8f860b12017-08-28 07:37:06 -0700467 // key_len contains the length of the key, which may differ from
468 // |cipher->key_len| if the cipher can take a variable key length.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800469 unsigned key_len;
470
Robert Sloan8f860b12017-08-28 07:37:06 -0700471 // encrypt is one if encrypting and zero if decrypting.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800472 int encrypt;
473
Robert Sloan8f860b12017-08-28 07:37:06 -0700474 // flags contains the OR of zero or more |EVP_CIPH_*| flags, above.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800475 uint32_t flags;
476
Robert Sloan8f860b12017-08-28 07:37:06 -0700477 // oiv contains the original IV value.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800478 uint8_t oiv[EVP_MAX_IV_LENGTH];
479
Robert Sloan8f860b12017-08-28 07:37:06 -0700480 // iv contains the current IV value, which may have been updated.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800481 uint8_t iv[EVP_MAX_IV_LENGTH];
482
Robert Sloan8f860b12017-08-28 07:37:06 -0700483 // buf contains a partial block which is used by, for example, CTR mode to
484 // store unused keystream bytes.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800485 uint8_t buf[EVP_MAX_BLOCK_LENGTH];
486
Robert Sloan8f860b12017-08-28 07:37:06 -0700487 // buf_len contains the number of bytes of a partial block contained in
488 // |buf|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800489 int buf_len;
490
Robert Sloan8f860b12017-08-28 07:37:06 -0700491 // num contains the number of bytes of |iv| which are valid for modes that
492 // manage partial blocks themselves.
David Benjamin4969cc92016-04-22 15:02:23 -0400493 unsigned num;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800494
Robert Sloan8f860b12017-08-28 07:37:06 -0700495 // final_used is non-zero if the |final| buffer contains plaintext.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800496 int final_used;
497
Robert Sloan8f860b12017-08-28 07:37:06 -0700498 // block_mask contains |cipher->block_size| minus one. (The block size
499 // assumed to be a power of two.)
Adam Langleyd9e397b2015-01-22 14:27:53 -0800500 int block_mask;
501
Robert Sloan8f860b12017-08-28 07:37:06 -0700502 uint8_t final[EVP_MAX_BLOCK_LENGTH]; // possible final block
Adam Langleyd9e397b2015-01-22 14:27:53 -0800503} /* EVP_CIPHER_CTX */;
504
505typedef struct evp_cipher_info_st {
506 const EVP_CIPHER *cipher;
507 unsigned char iv[EVP_MAX_IV_LENGTH];
508} EVP_CIPHER_INFO;
509
Adam Langleyf40f42d2015-03-24 18:25:20 -0700510struct evp_cipher_st {
Robert Sloan8f860b12017-08-28 07:37:06 -0700511 // type contains a NID identifing the cipher. (e.g. NID_aes_128_gcm.)
Adam Langleyf40f42d2015-03-24 18:25:20 -0700512 int nid;
513
Robert Sloan8f860b12017-08-28 07:37:06 -0700514 // block_size contains the block size, in bytes, of the cipher, or 1 for a
515 // stream cipher.
Adam Langleyf40f42d2015-03-24 18:25:20 -0700516 unsigned block_size;
517
Robert Sloan8f860b12017-08-28 07:37:06 -0700518 // key_len contains the key size, in bytes, for the cipher. If the cipher
519 // takes a variable key size then this contains the default size.
Adam Langleyf40f42d2015-03-24 18:25:20 -0700520 unsigned key_len;
521
Robert Sloan8f860b12017-08-28 07:37:06 -0700522 // iv_len contains the IV size, in bytes, or zero if inapplicable.
Adam Langleyf40f42d2015-03-24 18:25:20 -0700523 unsigned iv_len;
524
Robert Sloan8f860b12017-08-28 07:37:06 -0700525 // ctx_size contains the size, in bytes, of the per-key context for this
526 // cipher.
Adam Langleyf40f42d2015-03-24 18:25:20 -0700527 unsigned ctx_size;
528
Robert Sloan8f860b12017-08-28 07:37:06 -0700529 // flags contains the OR of a number of flags. See |EVP_CIPH_*|.
Adam Langleyf40f42d2015-03-24 18:25:20 -0700530 uint32_t flags;
531
Robert Sloan8f860b12017-08-28 07:37:06 -0700532 // app_data is a pointer to opaque, user data.
Adam Langleyf40f42d2015-03-24 18:25:20 -0700533 void *app_data;
534
535 int (*init)(EVP_CIPHER_CTX *ctx, const uint8_t *key, const uint8_t *iv,
536 int enc);
537
538 int (*cipher)(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
539 size_t inl);
540
Robert Sloan8f860b12017-08-28 07:37:06 -0700541 // cleanup, if non-NULL, releases memory associated with the context. It is
542 // called if |EVP_CTRL_INIT| succeeds. Note that |init| may not have been
543 // called at this point.
Adam Langleye9ada862015-05-11 17:20:37 -0700544 void (*cleanup)(EVP_CIPHER_CTX *);
Adam Langleyf40f42d2015-03-24 18:25:20 -0700545
546 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr);
547};
548
Adam Langleyd9e397b2015-01-22 14:27:53 -0800549
Adam Langleyd9e397b2015-01-22 14:27:53 -0800550#if defined(__cplusplus)
Robert Sloan8f860b12017-08-28 07:37:06 -0700551} // extern C
David Benjaminf0c4a6c2016-08-11 13:26:41 -0400552
553#if !defined(BORINGSSL_NO_CXX)
554extern "C++" {
555
556namespace bssl {
557
558BORINGSSL_MAKE_DELETER(EVP_CIPHER_CTX, EVP_CIPHER_CTX_free)
559
560using ScopedEVP_CIPHER_CTX =
561 internal::StackAllocated<EVP_CIPHER_CTX, int, EVP_CIPHER_CTX_init,
562 EVP_CIPHER_CTX_cleanup>;
563
564} // namespace bssl
565
566} // extern C++
567#endif
568
Adam Langleyd9e397b2015-01-22 14:27:53 -0800569#endif
570
Adam Langleye9ada862015-05-11 17:20:37 -0700571#define CIPHER_R_AES_KEY_SETUP_FAILED 100
572#define CIPHER_R_BAD_DECRYPT 101
573#define CIPHER_R_BAD_KEY_LENGTH 102
574#define CIPHER_R_BUFFER_TOO_SMALL 103
575#define CIPHER_R_CTRL_NOT_IMPLEMENTED 104
576#define CIPHER_R_CTRL_OPERATION_NOT_IMPLEMENTED 105
577#define CIPHER_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH 106
578#define CIPHER_R_INITIALIZATION_ERROR 107
579#define CIPHER_R_INPUT_NOT_INITIALIZED 108
580#define CIPHER_R_INVALID_AD_SIZE 109
581#define CIPHER_R_INVALID_KEY_LENGTH 110
582#define CIPHER_R_INVALID_NONCE_SIZE 111
583#define CIPHER_R_INVALID_OPERATION 112
584#define CIPHER_R_IV_TOO_LARGE 113
585#define CIPHER_R_NO_CIPHER_SET 114
586#define CIPHER_R_OUTPUT_ALIASES_INPUT 115
587#define CIPHER_R_TAG_TOO_LARGE 116
588#define CIPHER_R_TOO_LARGE 117
589#define CIPHER_R_UNSUPPORTED_AD_SIZE 118
590#define CIPHER_R_UNSUPPORTED_INPUT_SIZE 119
591#define CIPHER_R_UNSUPPORTED_KEY_SIZE 120
592#define CIPHER_R_UNSUPPORTED_NONCE_SIZE 121
593#define CIPHER_R_UNSUPPORTED_TAG_SIZE 122
594#define CIPHER_R_WRONG_FINAL_BLOCK_LENGTH 123
595#define CIPHER_R_NO_DIRECTION_SET 124
Robert Sloan8ff03552017-06-14 12:40:58 -0700596#define CIPHER_R_INVALID_NONCE 125
Adam Langleyd9e397b2015-01-22 14:27:53 -0800597
Robert Sloan8f860b12017-08-28 07:37:06 -0700598#endif // OPENSSL_HEADER_CIPHER_H