blob: ba4b6983f5e898b5300ee7a5d683e0cba94682e8 [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
David Benjamin4512b792017-08-18 19:21:50 -040067// Ciphers.
Adam Langley95c29f32014-06-20 12:00:00 -070068
69
David Benjamin4512b792017-08-18 19:21:50 -040070// Cipher primitives.
71//
72// The following functions return |EVP_CIPHER| objects that implement the named
73// cipher algorithm.
Adam Langley95c29f32014-06-20 12:00:00 -070074
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);
Matt Braithwaite98d2f1f2015-08-18 20:27:03 -070078OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ecb(void);
Matt Braithwaited82a7b22015-08-19 14:25:32 -070079OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede(void);
Adam Langleya5334492017-04-11 11:08:08 -070080OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3(void);
Matt Braithwaite8c413a22015-08-11 17:19:35 -070081OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede_cbc(void);
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070082OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_cbc(void);
Adam Langley95c29f32014-06-20 12:00:00 -070083
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070084OPENSSL_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 Langley087930f2015-02-24 12:44:40 -080087OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_ofb(void);
Adam Langley95c29f32014-06-20 12:00:00 -070088
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070089OPENSSL_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 Langley087930f2015-02-24 12:44:40 -080092OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_ofb(void);
Matt Braithwaite12fe1b22015-07-28 16:49:58 -070093OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_xts(void);
David Benjamin4841ce42014-12-15 03:59:02 -050094
David Benjamin4512b792017-08-18 19:21:50 -040095// EVP_enc_null returns a 'cipher' that passes plaintext through as
96// ciphertext.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -070097OPENSSL_EXPORT const EVP_CIPHER *EVP_enc_null(void);
Adam Langley95c29f32014-06-20 12:00:00 -070098
David Benjamin4512b792017-08-18 19:21:50 -040099// EVP_rc2_cbc returns a cipher that implements 128-bit RC2 in CBC mode.
Matt Braithwaitef92930e2015-08-04 14:44:53 -0700100OPENSSL_EXPORT const EVP_CIPHER *EVP_rc2_cbc(void);
101
David Benjamin4512b792017-08-18 19:21:50 -0400102// 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 Langleycc8fcf42014-08-21 10:48:32 -0700106const EVP_CIPHER *EVP_rc2_40_cbc(void);
107
David Benjamin4512b792017-08-18 19:21:50 -0400108// EVP_get_cipherbynid returns the cipher corresponding to the given NID, or
David Benjamin03cae7a2021-09-24 12:25:41 -0400109// NULL if no such cipher is known. Note using this function links almost every
110// cipher implemented by BoringSSL into the binary, whether the caller uses them
111// or not. Size-conscious callers, such as client software, should not use this
112// function.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700113OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid);
Adam Langley95c29f32014-06-20 12:00:00 -0700114
115
David Benjamin4512b792017-08-18 19:21:50 -0400116// Cipher context allocation.
117//
118// An |EVP_CIPHER_CTX| represents the state of an encryption or decryption in
119// progress.
Adam Langley95c29f32014-06-20 12:00:00 -0700120
David Benjamin4512b792017-08-18 19:21:50 -0400121// EVP_CIPHER_CTX_init initialises an, already allocated, |EVP_CIPHER_CTX|.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700122OPENSSL_EXPORT void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700123
David Benjamin4512b792017-08-18 19:21:50 -0400124// EVP_CIPHER_CTX_new allocates a fresh |EVP_CIPHER_CTX|, calls
125// |EVP_CIPHER_CTX_init| and returns it, or NULL on allocation failure.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700126OPENSSL_EXPORT EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void);
Adam Langley95c29f32014-06-20 12:00:00 -0700127
David Benjamin4512b792017-08-18 19:21:50 -0400128// EVP_CIPHER_CTX_cleanup frees any memory referenced by |ctx|. It returns
129// one.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700130OPENSSL_EXPORT int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700131
David Benjamin4512b792017-08-18 19:21:50 -0400132// EVP_CIPHER_CTX_free calls |EVP_CIPHER_CTX_cleanup| on |ctx| and then frees
133// |ctx| itself.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700134OPENSSL_EXPORT void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700135
David Benjamin4512b792017-08-18 19:21:50 -0400136// EVP_CIPHER_CTX_copy sets |out| to be a duplicate of the current state of
137// |in|. The |out| argument must have been previously initialised.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700138OPENSSL_EXPORT int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out,
139 const EVP_CIPHER_CTX *in);
Adam Langley95c29f32014-06-20 12:00:00 -0700140
David Benjamin81f030b2016-08-12 14:48:19 -0400141// EVP_CIPHER_CTX_reset calls |EVP_CIPHER_CTX_cleanup| followed by
Adam Langleycf67ec02019-08-22 16:52:16 -0700142// |EVP_CIPHER_CTX_init| and returns one.
143OPENSSL_EXPORT int EVP_CIPHER_CTX_reset(EVP_CIPHER_CTX *ctx);
David Benjamin81f030b2016-08-12 14:48:19 -0400144
Adam Langley95c29f32014-06-20 12:00:00 -0700145
David Benjamin4512b792017-08-18 19:21:50 -0400146// Cipher context configuration.
Adam Langley95c29f32014-06-20 12:00:00 -0700147
David Benjamin4512b792017-08-18 19:21:50 -0400148// 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
David Benjamin4512b792017-08-18 19:21:50 -0400160// 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
David Benjamin4512b792017-08-18 19:21:50 -0400165// 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
David Benjamin4512b792017-08-18 19:21:50 -0400171// Cipher operations.
Adam Langley95c29f32014-06-20 12:00:00 -0700172
David Benjamin4512b792017-08-18 19:21:50 -0400173// 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.
David Benjamin701d8b22022-05-25 12:25:28 -0400177//
178// If |ctx| is an AEAD cipher, e.g. |EVP_aes_128_gcm|, and |out| is NULL, this
179// function instead adds |in_len| bytes from |in| to the AAD and sets |*out_len|
180// to |in_len|. The AAD must be fully specified in this way before this function
181// is used to encrypt plaintext.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700182OPENSSL_EXPORT int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
183 int *out_len, const uint8_t *in,
184 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700185
David Benjamin4512b792017-08-18 19:21:50 -0400186// EVP_EncryptFinal_ex writes at most a block of ciphertext to |out| and sets
187// |*out_len| to the number of bytes written. If padding is enabled (the
188// default) then standard padding is applied to create the final block. If
189// padding is disabled (with |EVP_CIPHER_CTX_set_padding|) then any partial
190// block remaining will cause an error. The function returns one on success and
191// zero otherwise.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700192OPENSSL_EXPORT int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
193 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700194
David Benjamin4512b792017-08-18 19:21:50 -0400195// EVP_DecryptUpdate decrypts |in_len| bytes from |in| to |out|. The number of
196// output bytes may be up to |in_len| plus the block length minus one and |out|
197// must have sufficient space. The number of bytes actually output is written
198// to |*out_len|. It returns one on success and zero otherwise.
David Benjamin701d8b22022-05-25 12:25:28 -0400199//
200// If |ctx| is an AEAD cipher, e.g. |EVP_aes_128_gcm|, and |out| is NULL, this
201// function instead adds |in_len| bytes from |in| to the AAD and sets |*out_len|
202// to |in_len|. The AAD must be fully specified in this way before this function
203// is used to decrypt ciphertext.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700204OPENSSL_EXPORT int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
205 int *out_len, const uint8_t *in,
206 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700207
David Benjamin4512b792017-08-18 19:21:50 -0400208// EVP_DecryptFinal_ex writes at most a block of ciphertext to |out| and sets
209// |*out_len| to the number of bytes written. If padding is enabled (the
210// default) then padding is removed from the final block.
211//
212// WARNING: it is unsafe to call this function with unauthenticated
213// ciphertext if padding is enabled.
David Benjamin16a94932021-11-17 14:01:11 -0500214OPENSSL_EXPORT int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700215 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700216
David Benjamin701d8b22022-05-25 12:25:28 -0400217// EVP_Cipher performs a one-shot encryption/decryption operation for non-AEAD
218// ciphers. No partial blocks are maintained between calls. However, any
219// internal cipher state is still updated. For CBC-mode ciphers, the IV is
220// updated to the final ciphertext block. For stream ciphers, the stream is
221// advanced past the bytes used. It returns one on success and zero otherwise.
David Benjamin4512b792017-08-18 19:21:50 -0400222//
David Benjamin701d8b22022-05-25 12:25:28 -0400223// WARNING: This function behaves completely differently on AEAD ciphers, such
224// as |EVP_aes_128_gcm|. Rather than being a one-shot operation, it behaves like
225// |EVP_CipherUpdate| or |EVP_CipherFinal_ex|, depending on whether |in| is
226// NULL. It also instead returns the number of bytes written or -1 on error.
227// This behavior is deprecated. Use |EVP_CipherUpdate| or |EVP_CipherFinal_ex|
228// instead.
David Benjamin4512b792017-08-18 19:21:50 -0400229//
230// TODO(davidben): The normal ciphers currently never fail, even if, e.g.,
231// |in_len| is not a multiple of the block size for CBC-mode decryption. The
232// input just gets rounded up while the output gets truncated. This should
233// either be officially documented or fail.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700234OPENSSL_EXPORT int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
235 const uint8_t *in, size_t in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700236
David Benjamin4512b792017-08-18 19:21:50 -0400237// EVP_CipherUpdate calls either |EVP_EncryptUpdate| or |EVP_DecryptUpdate|
238// depending on how |ctx| has been setup.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700239OPENSSL_EXPORT int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
240 int *out_len, const uint8_t *in,
241 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700242
David Benjamin4512b792017-08-18 19:21:50 -0400243// EVP_CipherFinal_ex calls either |EVP_EncryptFinal_ex| or
244// |EVP_DecryptFinal_ex| depending on how |ctx| has been setup.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700245OPENSSL_EXPORT int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
246 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700247
248
David Benjamin4512b792017-08-18 19:21:50 -0400249// Cipher context accessors.
Adam Langley95c29f32014-06-20 12:00:00 -0700250
David Benjamin4512b792017-08-18 19:21:50 -0400251// EVP_CIPHER_CTX_cipher returns the |EVP_CIPHER| underlying |ctx|, or NULL if
252// none has been set.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700253OPENSSL_EXPORT const EVP_CIPHER *EVP_CIPHER_CTX_cipher(
254 const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700255
David Benjamin4512b792017-08-18 19:21:50 -0400256// EVP_CIPHER_CTX_nid returns a NID identifying the |EVP_CIPHER| underlying
257// |ctx| (e.g. |NID_aes_128_gcm|). It will crash if no cipher has been
258// configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700259OPENSSL_EXPORT int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700260
David Benjamin8e75ae42018-05-01 17:01:04 -0400261// EVP_CIPHER_CTX_encrypting returns one if |ctx| is configured for encryption
262// and zero otherwise.
263OPENSSL_EXPORT int EVP_CIPHER_CTX_encrypting(const EVP_CIPHER_CTX *ctx);
264
David Benjamin4512b792017-08-18 19:21:50 -0400265// EVP_CIPHER_CTX_block_size returns the block size, in bytes, of the cipher
266// underlying |ctx|, or one if the cipher is a stream cipher. It will crash if
267// no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700268OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700269
David Benjamin4512b792017-08-18 19:21:50 -0400270// EVP_CIPHER_CTX_key_length returns the key size, in bytes, of the cipher
271// underlying |ctx| or zero if no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700272OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700273
David Benjamin4512b792017-08-18 19:21:50 -0400274// EVP_CIPHER_CTX_iv_length returns the IV size, in bytes, of the cipher
275// underlying |ctx|. It will crash if no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700276OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700277
David Benjamin4512b792017-08-18 19:21:50 -0400278// EVP_CIPHER_CTX_get_app_data returns the opaque, application data pointer for
279// |ctx|, or NULL if none has been set.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700280OPENSSL_EXPORT void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700281
David Benjamin4512b792017-08-18 19:21:50 -0400282// EVP_CIPHER_CTX_set_app_data sets the opaque, application data pointer for
283// |ctx| to |data|.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700284OPENSSL_EXPORT void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx,
285 void *data);
Adam Langley95c29f32014-06-20 12:00:00 -0700286
David Benjamin4512b792017-08-18 19:21:50 -0400287// EVP_CIPHER_CTX_flags returns a value which is the OR of zero or more
288// |EVP_CIPH_*| flags. It will crash if no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700289OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700290
David Benjamin4512b792017-08-18 19:21:50 -0400291// EVP_CIPHER_CTX_mode returns one of the |EVP_CIPH_*| cipher mode values
292// enumerated below. It will crash if no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700293OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700294
David Benjamin4512b792017-08-18 19:21:50 -0400295// EVP_CIPHER_CTX_ctrl is an |ioctl| like function. The |command| argument
296// should be one of the |EVP_CTRL_*| values. The |arg| and |ptr| arguments are
297// specific to the command in question.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700298OPENSSL_EXPORT int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command,
299 int arg, void *ptr);
Adam Langley95c29f32014-06-20 12:00:00 -0700300
David Benjamin4512b792017-08-18 19:21:50 -0400301// EVP_CIPHER_CTX_set_padding sets whether padding is enabled for |ctx| and
302// returns one. Pass a non-zero |pad| to enable padding (the default) or zero
303// to disable.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700304OPENSSL_EXPORT int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad);
Adam Langley95c29f32014-06-20 12:00:00 -0700305
David Benjamin4512b792017-08-18 19:21:50 -0400306// EVP_CIPHER_CTX_set_key_length sets the key length for |ctx|. This is only
307// valid for ciphers that can take a variable length key. It returns one on
308// success and zero on error.
David Benjamin1d6eeb32017-01-08 05:15:58 -0500309OPENSSL_EXPORT int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *ctx,
310 unsigned key_len);
Adam Langley539112f2014-08-22 11:06:41 -0700311
Adam Langley95c29f32014-06-20 12:00:00 -0700312
David Benjamin4512b792017-08-18 19:21:50 -0400313// Cipher accessors.
Adam Langley95c29f32014-06-20 12:00:00 -0700314
David Benjamin4512b792017-08-18 19:21:50 -0400315// EVP_CIPHER_nid returns a NID identifying |cipher|. (For example,
316// |NID_aes_128_gcm|.)
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700317OPENSSL_EXPORT int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700318
David Benjamin4512b792017-08-18 19:21:50 -0400319// EVP_CIPHER_block_size returns the block size, in bytes, for |cipher|, or one
320// if |cipher| is a stream cipher.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700321OPENSSL_EXPORT unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700322
David Benjamin4512b792017-08-18 19:21:50 -0400323// EVP_CIPHER_key_length returns the key size, in bytes, for |cipher|. If
324// |cipher| can take a variable key length then this function returns the
325// default key length and |EVP_CIPHER_flags| will return a value with
326// |EVP_CIPH_VARIABLE_LENGTH| set.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700327OPENSSL_EXPORT unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700328
David Benjamin4512b792017-08-18 19:21:50 -0400329// EVP_CIPHER_iv_length returns the IV size, in bytes, of |cipher|, or zero if
330// |cipher| doesn't take an IV.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700331OPENSSL_EXPORT unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700332
David Benjamin4512b792017-08-18 19:21:50 -0400333// EVP_CIPHER_flags returns a value which is the OR of zero or more
334// |EVP_CIPH_*| flags.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700335OPENSSL_EXPORT uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700336
David Benjamin4512b792017-08-18 19:21:50 -0400337// EVP_CIPHER_mode returns one of the cipher mode values enumerated below.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700338OPENSSL_EXPORT uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700339
340
David Benjamin4512b792017-08-18 19:21:50 -0400341// Key derivation.
Adam Langley95c29f32014-06-20 12:00:00 -0700342
David Benjamin4512b792017-08-18 19:21:50 -0400343// EVP_BytesToKey generates a key and IV for the cipher |type| by iterating
344// |md| |count| times using |data| and |salt|. On entry, the |key| and |iv|
345// buffers must have enough space to hold a key and IV for |type|. It returns
346// the length of the key on success or zero on error.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700347OPENSSL_EXPORT int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md,
348 const uint8_t *salt, const uint8_t *data,
349 size_t data_len, unsigned count, uint8_t *key,
350 uint8_t *iv);
Adam Langley95c29f32014-06-20 12:00:00 -0700351
352
David Benjamin4512b792017-08-18 19:21:50 -0400353// Cipher modes (for |EVP_CIPHER_mode|).
Adam Langley95c29f32014-06-20 12:00:00 -0700354
355#define EVP_CIPH_STREAM_CIPHER 0x0
356#define EVP_CIPH_ECB_MODE 0x1
357#define EVP_CIPH_CBC_MODE 0x2
358#define EVP_CIPH_CFB_MODE 0x3
359#define EVP_CIPH_OFB_MODE 0x4
360#define EVP_CIPH_CTR_MODE 0x5
361#define EVP_CIPH_GCM_MODE 0x6
Matt Braithwaite12fe1b22015-07-28 16:49:58 -0700362#define EVP_CIPH_XTS_MODE 0x7
Adam Langley95c29f32014-06-20 12:00:00 -0700363
364
David Benjamin4512b792017-08-18 19:21:50 -0400365// Cipher flags (for |EVP_CIPHER_flags|).
Adam Langley95c29f32014-06-20 12:00:00 -0700366
David Benjamin4512b792017-08-18 19:21:50 -0400367// EVP_CIPH_VARIABLE_LENGTH indicates that the cipher takes a variable length
368// key.
Adam Langley95c29f32014-06-20 12:00:00 -0700369#define EVP_CIPH_VARIABLE_LENGTH 0x40
370
David Benjamin4512b792017-08-18 19:21:50 -0400371// EVP_CIPH_ALWAYS_CALL_INIT indicates that the |init| function for the cipher
372// should always be called when initialising a new operation, even if the key
373// is NULL to indicate that the same key is being used.
Adam Langley95c29f32014-06-20 12:00:00 -0700374#define EVP_CIPH_ALWAYS_CALL_INIT 0x80
375
David Benjamin4512b792017-08-18 19:21:50 -0400376// EVP_CIPH_CUSTOM_IV indicates that the cipher manages the IV itself rather
377// than keeping it in the |iv| member of |EVP_CIPHER_CTX|.
Adam Langley95c29f32014-06-20 12:00:00 -0700378#define EVP_CIPH_CUSTOM_IV 0x100
379
David Benjamin4512b792017-08-18 19:21:50 -0400380// EVP_CIPH_CTRL_INIT indicates that EVP_CTRL_INIT should be used when
381// initialising an |EVP_CIPHER_CTX|.
Adam Langley95c29f32014-06-20 12:00:00 -0700382#define EVP_CIPH_CTRL_INIT 0x200
383
David Benjamin4512b792017-08-18 19:21:50 -0400384// EVP_CIPH_FLAG_CUSTOM_CIPHER indicates that the cipher manages blocking
385// itself. This causes EVP_(En|De)crypt_ex to be simple wrapper functions.
Adam Langley95c29f32014-06-20 12:00:00 -0700386#define EVP_CIPH_FLAG_CUSTOM_CIPHER 0x400
387
David Benjamin4512b792017-08-18 19:21:50 -0400388// EVP_CIPH_FLAG_AEAD_CIPHER specifies that the cipher is an AEAD. This is an
389// older version of the proper AEAD interface. See aead.h for the current
390// one.
Adam Langley95c29f32014-06-20 12:00:00 -0700391#define EVP_CIPH_FLAG_AEAD_CIPHER 0x800
392
David Benjamin4512b792017-08-18 19:21:50 -0400393// EVP_CIPH_CUSTOM_COPY indicates that the |ctrl| callback should be called
394// with |EVP_CTRL_COPY| at the end of normal |EVP_CIPHER_CTX_copy|
395// processing.
Adam Langley7578f3f2014-07-24 17:42:11 -0700396#define EVP_CIPH_CUSTOM_COPY 0x1000
397
Adam Langley5eeaf302020-09-18 10:28:46 -0700398// EVP_CIPH_FLAG_NON_FIPS_ALLOW is meaningless. In OpenSSL it permits non-FIPS
399// algorithms in FIPS mode. But BoringSSL FIPS mode doesn't prohibit algorithms
400// (it's up the the caller to use the FIPS module in a fashion compliant with
401// their needs). Thus this exists only to allow code to compile.
402#define EVP_CIPH_FLAG_NON_FIPS_ALLOW 0
403
Adam Langley95c29f32014-06-20 12:00:00 -0700404
David Benjamin4512b792017-08-18 19:21:50 -0400405// Deprecated functions
Adam Langley704453f2014-09-23 16:19:16 -0700406
David Benjamin4512b792017-08-18 19:21:50 -0400407// EVP_CipherInit acts like EVP_CipherInit_ex except that |EVP_CIPHER_CTX_init|
408// is called on |cipher| first, if |cipher| is not NULL.
Adam Langley704453f2014-09-23 16:19:16 -0700409OPENSSL_EXPORT int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
410 const uint8_t *key, const uint8_t *iv,
411 int enc);
412
David Benjamin4512b792017-08-18 19:21:50 -0400413// EVP_EncryptInit calls |EVP_CipherInit| with |enc| equal to one.
Adam Langley704453f2014-09-23 16:19:16 -0700414OPENSSL_EXPORT int EVP_EncryptInit(EVP_CIPHER_CTX *ctx,
415 const EVP_CIPHER *cipher, const uint8_t *key,
416 const uint8_t *iv);
417
David Benjamin4512b792017-08-18 19:21:50 -0400418// EVP_DecryptInit calls |EVP_CipherInit| with |enc| equal to zero.
Adam Langley704453f2014-09-23 16:19:16 -0700419OPENSSL_EXPORT int EVP_DecryptInit(EVP_CIPHER_CTX *ctx,
420 const EVP_CIPHER *cipher, const uint8_t *key,
421 const uint8_t *iv);
422
David Benjamin16a94932021-11-17 14:01:11 -0500423// EVP_CipherFinal calls |EVP_CipherFinal_ex|.
424OPENSSL_EXPORT int EVP_CipherFinal(EVP_CIPHER_CTX *ctx, uint8_t *out,
425 int *out_len);
426
427// EVP_EncryptFinal calls |EVP_EncryptFinal_ex|.
428OPENSSL_EXPORT int EVP_EncryptFinal(EVP_CIPHER_CTX *ctx, uint8_t *out,
429 int *out_len);
430
431// EVP_DecryptFinal calls |EVP_DecryptFinal_ex|.
432OPENSSL_EXPORT int EVP_DecryptFinal(EVP_CIPHER_CTX *ctx, uint8_t *out,
433 int *out_len);
434
David Benjamin4512b792017-08-18 19:21:50 -0400435// EVP_add_cipher_alias does nothing and returns one.
Adam Langley704453f2014-09-23 16:19:16 -0700436OPENSSL_EXPORT int EVP_add_cipher_alias(const char *a, const char *b);
437
David Benjamin4512b792017-08-18 19:21:50 -0400438// EVP_get_cipherbyname returns an |EVP_CIPHER| given a human readable name in
David Benjamin03cae7a2021-09-24 12:25:41 -0400439// |name|, or NULL if the name is unknown. Note using this function links almost
440// every cipher implemented by BoringSSL into the binary, not just the ones the
441// caller requests. Size-conscious callers, such as client software, should not
442// use this function.
Adam Langley704453f2014-09-23 16:19:16 -0700443OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbyname(const char *name);
444
David Benjamin4512b792017-08-18 19:21:50 -0400445// These AEADs are deprecated AES-GCM implementations that set
446// |EVP_CIPH_FLAG_CUSTOM_CIPHER|. Use |EVP_aead_aes_128_gcm| and
447// |EVP_aead_aes_256_gcm| instead.
Adam Langley5f889992015-11-04 14:05:00 -0800448OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_gcm(void);
449OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_gcm(void);
450
David Benjamin4512b792017-08-18 19:21:50 -0400451// These are deprecated, 192-bit version of AES.
Adam Langley5f889992015-11-04 14:05:00 -0800452OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ecb(void);
453OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cbc(void);
454OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ctr(void);
455OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_gcm(void);
David Benjaminf6e5d0d2018-06-15 20:14:16 -0400456OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ofb(void);
Adam Langley5f889992015-11-04 14:05:00 -0800457
Adam Langley6effbf22019-01-03 11:23:54 -0800458// EVP_des_ede3_ecb is an alias for |EVP_des_ede3|. Use the former instead.
459OPENSSL_EXPORT const EVP_CIPHER *EVP_des_ede3_ecb(void);
460
Adam Langleye64ef272017-09-14 10:14:34 -0700461// EVP_aes_128_cfb128 is only available in decrepit.
462OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cfb128(void);
463
Adam Langley76164b12021-01-06 16:34:01 -0800464// EVP_aes_128_cfb is an alias for |EVP_aes_128_cfb128| and is only available in
465// decrepit.
466OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_cfb(void);
467
Adam Langley5dd18d02021-01-07 12:45:59 -0800468// EVP_aes_192_cfb128 is only available in decrepit.
469OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cfb128(void);
470
471// EVP_aes_192_cfb is an alias for |EVP_aes_192_cfb128| and is only available in
472// decrepit.
473OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cfb(void);
474
Shelley Vohr012a4442019-08-30 14:16:32 -0700475// EVP_aes_256_cfb128 is only available in decrepit.
476OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cfb128(void);
477
Adam Langley76164b12021-01-06 16:34:01 -0800478// EVP_aes_256_cfb is an alias for |EVP_aes_256_cfb128| and is only available in
479// decrepit.
480OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_cfb(void);
481
Adam Langley6effbf22019-01-03 11:23:54 -0800482// EVP_bf_ecb is Blowfish in ECB mode and is only available in decrepit.
483OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_ecb(void);
484
485// EVP_bf_cbc is Blowfish in CBC mode and is only available in decrepit.
486OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_cbc(void);
487
488// EVP_bf_cfb is Blowfish in 64-bit CFB mode and is only available in decrepit.
489OPENSSL_EXPORT const EVP_CIPHER *EVP_bf_cfb(void);
490
491// EVP_cast5_ecb is CAST5 in ECB mode and is only available in decrepit.
492OPENSSL_EXPORT const EVP_CIPHER *EVP_cast5_ecb(void);
493
494// EVP_cast5_cbc is CAST5 in CBC mode and is only available in decrepit.
495OPENSSL_EXPORT const EVP_CIPHER *EVP_cast5_cbc(void);
496
David Benjamina02ed042017-11-02 20:34:05 -0400497// The following flags do nothing and are included only to make it easier to
498// compile code with BoringSSL.
David Benjamin4b968332018-10-14 11:01:40 -0500499#define EVP_CIPH_CCM_MODE (-1)
500#define EVP_CIPH_OCB_MODE (-2)
501#define EVP_CIPH_WRAP_MODE (-3)
David Benjamina02ed042017-11-02 20:34:05 -0400502#define EVP_CIPHER_CTX_FLAG_WRAP_ALLOW 0
503
504// EVP_CIPHER_CTX_set_flags does nothing.
505OPENSSL_EXPORT void EVP_CIPHER_CTX_set_flags(const EVP_CIPHER_CTX *ctx,
506 uint32_t flags);
507
Adam Langley704453f2014-09-23 16:19:16 -0700508
David Benjamin4512b792017-08-18 19:21:50 -0400509// Private functions.
Adam Langley95c29f32014-06-20 12:00:00 -0700510
David Benjamin4512b792017-08-18 19:21:50 -0400511// EVP_CIPH_NO_PADDING disables padding in block ciphers.
Adam Langley95c29f32014-06-20 12:00:00 -0700512#define EVP_CIPH_NO_PADDING 0x800
513
David Benjamin92812cb2018-09-03 16:20:09 -0500514// The following are |EVP_CIPHER_CTX_ctrl| commands.
Adam Langley95c29f32014-06-20 12:00:00 -0700515#define EVP_CTRL_INIT 0x0
516#define EVP_CTRL_SET_KEY_LENGTH 0x1
517#define EVP_CTRL_GET_RC2_KEY_BITS 0x2
518#define EVP_CTRL_SET_RC2_KEY_BITS 0x3
519#define EVP_CTRL_GET_RC5_ROUNDS 0x4
520#define EVP_CTRL_SET_RC5_ROUNDS 0x5
521#define EVP_CTRL_RAND_KEY 0x6
522#define EVP_CTRL_PBE_PRF_NID 0x7
523#define EVP_CTRL_COPY 0x8
David Benjamina3202d72018-08-09 11:56:34 -0500524#define EVP_CTRL_AEAD_SET_IVLEN 0x9
525#define EVP_CTRL_AEAD_GET_TAG 0x10
526#define EVP_CTRL_AEAD_SET_TAG 0x11
527#define EVP_CTRL_AEAD_SET_IV_FIXED 0x12
Adam Langley95c29f32014-06-20 12:00:00 -0700528#define EVP_CTRL_GCM_IV_GEN 0x13
Adam Langley95c29f32014-06-20 12:00:00 -0700529#define EVP_CTRL_AEAD_SET_MAC_KEY 0x17
David Benjamin92812cb2018-09-03 16:20:09 -0500530// EVP_CTRL_GCM_SET_IV_INV sets the GCM invocation field, decrypt only
Adam Langley95c29f32014-06-20 12:00:00 -0700531#define EVP_CTRL_GCM_SET_IV_INV 0x18
532
David Benjamin92812cb2018-09-03 16:20:09 -0500533// The following constants are unused.
Adam Langley95c29f32014-06-20 12:00:00 -0700534#define EVP_GCM_TLS_FIXED_IV_LEN 4
Adam Langley95c29f32014-06-20 12:00:00 -0700535#define EVP_GCM_TLS_EXPLICIT_IV_LEN 8
Adam Langley95c29f32014-06-20 12:00:00 -0700536#define EVP_GCM_TLS_TAG_LEN 16
537
David Benjamina3202d72018-08-09 11:56:34 -0500538// The following are legacy aliases for AEAD |EVP_CIPHER_CTX_ctrl| values.
539#define EVP_CTRL_GCM_SET_IVLEN EVP_CTRL_AEAD_SET_IVLEN
540#define EVP_CTRL_GCM_GET_TAG EVP_CTRL_AEAD_GET_TAG
541#define EVP_CTRL_GCM_SET_TAG EVP_CTRL_AEAD_SET_TAG
542#define EVP_CTRL_GCM_SET_IV_FIXED EVP_CTRL_AEAD_SET_IV_FIXED
543
Adam Langley95c29f32014-06-20 12:00:00 -0700544#define EVP_MAX_KEY_LENGTH 64
545#define EVP_MAX_IV_LENGTH 16
546#define EVP_MAX_BLOCK_LENGTH 32
547
548struct evp_cipher_ctx_st {
David Benjamin4512b792017-08-18 19:21:50 -0400549 // cipher contains the underlying cipher for this context.
Adam Langley95c29f32014-06-20 12:00:00 -0700550 const EVP_CIPHER *cipher;
551
David Benjamin4512b792017-08-18 19:21:50 -0400552 // app_data is a pointer to opaque, user data.
553 void *app_data; // application stuff
Adam Langley95c29f32014-06-20 12:00:00 -0700554
David Benjamin4512b792017-08-18 19:21:50 -0400555 // cipher_data points to the |cipher| specific state.
Adam Langley95c29f32014-06-20 12:00:00 -0700556 void *cipher_data;
557
David Benjamin4512b792017-08-18 19:21:50 -0400558 // key_len contains the length of the key, which may differ from
559 // |cipher->key_len| if the cipher can take a variable key length.
Adam Langley95c29f32014-06-20 12:00:00 -0700560 unsigned key_len;
561
David Benjamin4512b792017-08-18 19:21:50 -0400562 // encrypt is one if encrypting and zero if decrypting.
Adam Langley95c29f32014-06-20 12:00:00 -0700563 int encrypt;
564
David Benjamin4512b792017-08-18 19:21:50 -0400565 // flags contains the OR of zero or more |EVP_CIPH_*| flags, above.
Adam Langley95c29f32014-06-20 12:00:00 -0700566 uint32_t flags;
567
David Benjamin4512b792017-08-18 19:21:50 -0400568 // oiv contains the original IV value.
Adam Langley95c29f32014-06-20 12:00:00 -0700569 uint8_t oiv[EVP_MAX_IV_LENGTH];
570
David Benjamin4512b792017-08-18 19:21:50 -0400571 // iv contains the current IV value, which may have been updated.
Adam Langley95c29f32014-06-20 12:00:00 -0700572 uint8_t iv[EVP_MAX_IV_LENGTH];
573
David Benjamin4512b792017-08-18 19:21:50 -0400574 // buf contains a partial block which is used by, for example, CTR mode to
575 // store unused keystream bytes.
Adam Langley95c29f32014-06-20 12:00:00 -0700576 uint8_t buf[EVP_MAX_BLOCK_LENGTH];
577
David Benjamin4512b792017-08-18 19:21:50 -0400578 // buf_len contains the number of bytes of a partial block contained in
579 // |buf|.
Adam Langley95c29f32014-06-20 12:00:00 -0700580 int buf_len;
581
David Benjamin4512b792017-08-18 19:21:50 -0400582 // num contains the number of bytes of |iv| which are valid for modes that
583 // manage partial blocks themselves.
David Benjamin0e21f412016-04-16 15:20:07 -0400584 unsigned num;
Adam Langley95c29f32014-06-20 12:00:00 -0700585
David Benjamin4512b792017-08-18 19:21:50 -0400586 // final_used is non-zero if the |final| buffer contains plaintext.
Adam Langley95c29f32014-06-20 12:00:00 -0700587 int final_used;
588
David Benjamin4512b792017-08-18 19:21:50 -0400589 uint8_t final[EVP_MAX_BLOCK_LENGTH]; // possible final block
Bob Beck1510e462022-08-30 11:28:33 -0600590
591 // Has this structure been rendered unusable by a failure.
592 int poisoned;
Adam Langley95c29f32014-06-20 12:00:00 -0700593} /* EVP_CIPHER_CTX */;
594
595typedef struct evp_cipher_info_st {
596 const EVP_CIPHER *cipher;
597 unsigned char iv[EVP_MAX_IV_LENGTH];
598} EVP_CIPHER_INFO;
599
600
601#if defined(__cplusplus)
David Benjamin4512b792017-08-18 19:21:50 -0400602} // extern C
David Benjaminf0e935d2016-09-06 18:10:19 -0400603
604#if !defined(BORINGSSL_NO_CXX)
605extern "C++" {
606
Joshua Liebow-Feeser8c7c6352018-08-26 18:53:36 -0700607BSSL_NAMESPACE_BEGIN
David Benjaminf0e935d2016-09-06 18:10:19 -0400608
609BORINGSSL_MAKE_DELETER(EVP_CIPHER_CTX, EVP_CIPHER_CTX_free)
610
611using ScopedEVP_CIPHER_CTX =
612 internal::StackAllocated<EVP_CIPHER_CTX, int, EVP_CIPHER_CTX_init,
613 EVP_CIPHER_CTX_cleanup>;
614
Joshua Liebow-Feeser8c7c6352018-08-26 18:53:36 -0700615BSSL_NAMESPACE_END
David Benjaminf0e935d2016-09-06 18:10:19 -0400616
617} // extern C++
618#endif
619
Adam Langley95c29f32014-06-20 12:00:00 -0700620#endif
621
David Benjamin689be0f2015-02-11 15:55:26 -0500622#define CIPHER_R_AES_KEY_SETUP_FAILED 100
623#define CIPHER_R_BAD_DECRYPT 101
624#define CIPHER_R_BAD_KEY_LENGTH 102
625#define CIPHER_R_BUFFER_TOO_SMALL 103
626#define CIPHER_R_CTRL_NOT_IMPLEMENTED 104
627#define CIPHER_R_CTRL_OPERATION_NOT_IMPLEMENTED 105
628#define CIPHER_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH 106
629#define CIPHER_R_INITIALIZATION_ERROR 107
630#define CIPHER_R_INPUT_NOT_INITIALIZED 108
631#define CIPHER_R_INVALID_AD_SIZE 109
632#define CIPHER_R_INVALID_KEY_LENGTH 110
633#define CIPHER_R_INVALID_NONCE_SIZE 111
634#define CIPHER_R_INVALID_OPERATION 112
635#define CIPHER_R_IV_TOO_LARGE 113
636#define CIPHER_R_NO_CIPHER_SET 114
637#define CIPHER_R_OUTPUT_ALIASES_INPUT 115
638#define CIPHER_R_TAG_TOO_LARGE 116
639#define CIPHER_R_TOO_LARGE 117
640#define CIPHER_R_UNSUPPORTED_AD_SIZE 118
641#define CIPHER_R_UNSUPPORTED_INPUT_SIZE 119
642#define CIPHER_R_UNSUPPORTED_KEY_SIZE 120
643#define CIPHER_R_UNSUPPORTED_NONCE_SIZE 121
644#define CIPHER_R_UNSUPPORTED_TAG_SIZE 122
645#define CIPHER_R_WRONG_FINAL_BLOCK_LENGTH 123
David Benjaminb34f5102015-02-28 03:59:33 -0500646#define CIPHER_R_NO_DIRECTION_SET 124
Steven Valdez2f3404b2017-05-24 16:54:35 -0400647#define CIPHER_R_INVALID_NONCE 125
Adam Langley95c29f32014-06-20 12:00:00 -0700648
David Benjamin4512b792017-08-18 19:21:50 -0400649#endif // OPENSSL_HEADER_CIPHER_H