blob: a8dd63afaac5c9bfcdb1b6485c410e31709a14a2 [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
109// NULL if no such cipher is known.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700110OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbynid(int nid);
Adam Langley95c29f32014-06-20 12:00:00 -0700111
112
David Benjamin4512b792017-08-18 19:21:50 -0400113// Cipher context allocation.
114//
115// An |EVP_CIPHER_CTX| represents the state of an encryption or decryption in
116// progress.
Adam Langley95c29f32014-06-20 12:00:00 -0700117
David Benjamin4512b792017-08-18 19:21:50 -0400118// EVP_CIPHER_CTX_init initialises an, already allocated, |EVP_CIPHER_CTX|.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700119OPENSSL_EXPORT void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700120
David Benjamin4512b792017-08-18 19:21:50 -0400121// 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 Langleyeb7d2ed2014-07-30 16:02:14 -0700123OPENSSL_EXPORT EVP_CIPHER_CTX *EVP_CIPHER_CTX_new(void);
Adam Langley95c29f32014-06-20 12:00:00 -0700124
David Benjamin4512b792017-08-18 19:21:50 -0400125// EVP_CIPHER_CTX_cleanup frees any memory referenced by |ctx|. It returns
126// one.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700127OPENSSL_EXPORT int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700128
David Benjamin4512b792017-08-18 19:21:50 -0400129// EVP_CIPHER_CTX_free calls |EVP_CIPHER_CTX_cleanup| on |ctx| and then frees
130// |ctx| itself.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700131OPENSSL_EXPORT void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700132
David Benjamin4512b792017-08-18 19:21:50 -0400133// 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 Langleyeb7d2ed2014-07-30 16:02:14 -0700135OPENSSL_EXPORT int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out,
136 const EVP_CIPHER_CTX *in);
Adam Langley95c29f32014-06-20 12:00:00 -0700137
138
David Benjamin4512b792017-08-18 19:21:50 -0400139// Cipher context configuration.
Adam Langley95c29f32014-06-20 12:00:00 -0700140
David Benjamin4512b792017-08-18 19:21:50 -0400141// EVP_CipherInit_ex configures |ctx| for a fresh encryption (or decryption, if
142// |enc| is zero) operation using |cipher|. If |ctx| has been previously
143// configured with a cipher then |cipher|, |key| and |iv| may be |NULL| and
144// |enc| may be -1 to reuse the previous values. The operation will use |key|
145// as the key and |iv| as the IV (if any). These should have the correct
146// lengths given by |EVP_CIPHER_key_length| and |EVP_CIPHER_iv_length|. It
147// returns one on success and zero on error.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700148OPENSSL_EXPORT int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx,
149 const EVP_CIPHER *cipher, ENGINE *engine,
150 const uint8_t *key, const uint8_t *iv,
151 int enc);
Adam Langley95c29f32014-06-20 12:00:00 -0700152
David Benjamin4512b792017-08-18 19:21:50 -0400153// EVP_EncryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to one.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700154OPENSSL_EXPORT int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,
155 const EVP_CIPHER *cipher, ENGINE *impl,
156 const uint8_t *key, const uint8_t *iv);
Adam Langley95c29f32014-06-20 12:00:00 -0700157
David Benjamin4512b792017-08-18 19:21:50 -0400158// EVP_DecryptInit_ex calls |EVP_CipherInit_ex| with |enc| equal to zero.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700159OPENSSL_EXPORT int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx,
160 const EVP_CIPHER *cipher, ENGINE *impl,
161 const uint8_t *key, const uint8_t *iv);
Adam Langley95c29f32014-06-20 12:00:00 -0700162
163
David Benjamin4512b792017-08-18 19:21:50 -0400164// Cipher operations.
Adam Langley95c29f32014-06-20 12:00:00 -0700165
David Benjamin4512b792017-08-18 19:21:50 -0400166// EVP_EncryptUpdate encrypts |in_len| bytes from |in| to |out|. The number
167// of output bytes may be up to |in_len| plus the block length minus one and
168// |out| must have sufficient space. The number of bytes actually output is
169// written to |*out_len|. It returns one on success and zero otherwise.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700170OPENSSL_EXPORT int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
171 int *out_len, const uint8_t *in,
172 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700173
David Benjamin4512b792017-08-18 19:21:50 -0400174// EVP_EncryptFinal_ex writes at most a block of ciphertext to |out| and sets
175// |*out_len| to the number of bytes written. If padding is enabled (the
176// default) then standard padding is applied to create the final block. If
177// padding is disabled (with |EVP_CIPHER_CTX_set_padding|) then any partial
178// block remaining will cause an error. The function returns one on success and
179// zero otherwise.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700180OPENSSL_EXPORT int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
181 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700182
David Benjamin4512b792017-08-18 19:21:50 -0400183// EVP_DecryptUpdate decrypts |in_len| bytes from |in| to |out|. The number of
184// output bytes may be up to |in_len| plus the block length minus one and |out|
185// must have sufficient space. The number of bytes actually output is written
186// to |*out_len|. It returns one on success and zero otherwise.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700187OPENSSL_EXPORT int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
188 int *out_len, const uint8_t *in,
189 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700190
David Benjamin4512b792017-08-18 19:21:50 -0400191// EVP_DecryptFinal_ex writes at most a block of ciphertext to |out| and sets
192// |*out_len| to the number of bytes written. If padding is enabled (the
193// default) then padding is removed from the final block.
194//
195// WARNING: it is unsafe to call this function with unauthenticated
196// ciphertext if padding is enabled.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700197OPENSSL_EXPORT int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out,
198 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700199
David Benjamin4512b792017-08-18 19:21:50 -0400200// EVP_Cipher performs a one-shot encryption/decryption operation. No partial
201// blocks are maintained between calls. However, any internal cipher state is
202// still updated. For CBC-mode ciphers, the IV is updated to the final
203// ciphertext block. For stream ciphers, the stream is advanced past the bytes
204// used. It returns one on success and zero otherwise, unless |EVP_CIPHER_flags|
205// has |EVP_CIPH_FLAG_CUSTOM_CIPHER| set. Then it returns the number of bytes
206// written or -1 on error.
207//
208// WARNING: this differs from the usual return value convention when using
209// |EVP_CIPH_FLAG_CUSTOM_CIPHER|.
210//
211// TODO(davidben): The normal ciphers currently never fail, even if, e.g.,
212// |in_len| is not a multiple of the block size for CBC-mode decryption. The
213// input just gets rounded up while the output gets truncated. This should
214// either be officially documented or fail.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700215OPENSSL_EXPORT int EVP_Cipher(EVP_CIPHER_CTX *ctx, uint8_t *out,
216 const uint8_t *in, size_t in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700217
David Benjamin4512b792017-08-18 19:21:50 -0400218// EVP_CipherUpdate calls either |EVP_EncryptUpdate| or |EVP_DecryptUpdate|
219// depending on how |ctx| has been setup.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700220OPENSSL_EXPORT int EVP_CipherUpdate(EVP_CIPHER_CTX *ctx, uint8_t *out,
221 int *out_len, const uint8_t *in,
222 int in_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700223
David Benjamin4512b792017-08-18 19:21:50 -0400224// EVP_CipherFinal_ex calls either |EVP_EncryptFinal_ex| or
225// |EVP_DecryptFinal_ex| depending on how |ctx| has been setup.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700226OPENSSL_EXPORT int EVP_CipherFinal_ex(EVP_CIPHER_CTX *ctx, uint8_t *out,
227 int *out_len);
Adam Langley95c29f32014-06-20 12:00:00 -0700228
229
David Benjamin4512b792017-08-18 19:21:50 -0400230// Cipher context accessors.
Adam Langley95c29f32014-06-20 12:00:00 -0700231
David Benjamin4512b792017-08-18 19:21:50 -0400232// EVP_CIPHER_CTX_cipher returns the |EVP_CIPHER| underlying |ctx|, or NULL if
233// none has been set.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700234OPENSSL_EXPORT const EVP_CIPHER *EVP_CIPHER_CTX_cipher(
235 const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700236
David Benjamin4512b792017-08-18 19:21:50 -0400237// EVP_CIPHER_CTX_nid returns a NID identifying the |EVP_CIPHER| underlying
238// |ctx| (e.g. |NID_aes_128_gcm|). It will crash if no cipher has been
239// configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700240OPENSSL_EXPORT int EVP_CIPHER_CTX_nid(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700241
David Benjamin4512b792017-08-18 19:21:50 -0400242// EVP_CIPHER_CTX_block_size returns the block size, in bytes, of the cipher
243// underlying |ctx|, or one if the cipher is a stream cipher. It will crash if
244// no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700245OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_block_size(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700246
David Benjamin4512b792017-08-18 19:21:50 -0400247// EVP_CIPHER_CTX_key_length returns the key size, in bytes, of the cipher
248// underlying |ctx| or zero if no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700249OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_key_length(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700250
David Benjamin4512b792017-08-18 19:21:50 -0400251// EVP_CIPHER_CTX_iv_length returns the IV size, in bytes, of the cipher
252// underlying |ctx|. It will crash if no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700253OPENSSL_EXPORT unsigned EVP_CIPHER_CTX_iv_length(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700254
David Benjamin4512b792017-08-18 19:21:50 -0400255// EVP_CIPHER_CTX_get_app_data returns the opaque, application data pointer for
256// |ctx|, or NULL if none has been set.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700257OPENSSL_EXPORT void *EVP_CIPHER_CTX_get_app_data(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700258
David Benjamin4512b792017-08-18 19:21:50 -0400259// EVP_CIPHER_CTX_set_app_data sets the opaque, application data pointer for
260// |ctx| to |data|.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700261OPENSSL_EXPORT void EVP_CIPHER_CTX_set_app_data(EVP_CIPHER_CTX *ctx,
262 void *data);
Adam Langley95c29f32014-06-20 12:00:00 -0700263
David Benjamin4512b792017-08-18 19:21:50 -0400264// EVP_CIPHER_CTX_flags returns a value which is the OR of zero or more
265// |EVP_CIPH_*| flags. It will crash if no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700266OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_flags(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700267
David Benjamin4512b792017-08-18 19:21:50 -0400268// EVP_CIPHER_CTX_mode returns one of the |EVP_CIPH_*| cipher mode values
269// enumerated below. It will crash if no cipher has been configured.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700270OPENSSL_EXPORT uint32_t EVP_CIPHER_CTX_mode(const EVP_CIPHER_CTX *ctx);
Adam Langley95c29f32014-06-20 12:00:00 -0700271
David Benjamin4512b792017-08-18 19:21:50 -0400272// EVP_CIPHER_CTX_ctrl is an |ioctl| like function. The |command| argument
273// should be one of the |EVP_CTRL_*| values. The |arg| and |ptr| arguments are
274// specific to the command in question.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700275OPENSSL_EXPORT int EVP_CIPHER_CTX_ctrl(EVP_CIPHER_CTX *ctx, int command,
276 int arg, void *ptr);
Adam Langley95c29f32014-06-20 12:00:00 -0700277
David Benjamin4512b792017-08-18 19:21:50 -0400278// EVP_CIPHER_CTX_set_padding sets whether padding is enabled for |ctx| and
279// returns one. Pass a non-zero |pad| to enable padding (the default) or zero
280// to disable.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700281OPENSSL_EXPORT int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *ctx, int pad);
Adam Langley95c29f32014-06-20 12:00:00 -0700282
David Benjamin4512b792017-08-18 19:21:50 -0400283// EVP_CIPHER_CTX_set_key_length sets the key length for |ctx|. This is only
284// valid for ciphers that can take a variable length key. It returns one on
285// success and zero on error.
David Benjamin1d6eeb32017-01-08 05:15:58 -0500286OPENSSL_EXPORT int EVP_CIPHER_CTX_set_key_length(EVP_CIPHER_CTX *ctx,
287 unsigned key_len);
Adam Langley539112f2014-08-22 11:06:41 -0700288
Adam Langley95c29f32014-06-20 12:00:00 -0700289
David Benjamin4512b792017-08-18 19:21:50 -0400290// Cipher accessors.
Adam Langley95c29f32014-06-20 12:00:00 -0700291
David Benjamin4512b792017-08-18 19:21:50 -0400292// EVP_CIPHER_nid returns a NID identifying |cipher|. (For example,
293// |NID_aes_128_gcm|.)
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700294OPENSSL_EXPORT int EVP_CIPHER_nid(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700295
David Benjamin4512b792017-08-18 19:21:50 -0400296// EVP_CIPHER_block_size returns the block size, in bytes, for |cipher|, or one
297// if |cipher| is a stream cipher.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700298OPENSSL_EXPORT unsigned EVP_CIPHER_block_size(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700299
David Benjamin4512b792017-08-18 19:21:50 -0400300// EVP_CIPHER_key_length returns the key size, in bytes, for |cipher|. If
301// |cipher| can take a variable key length then this function returns the
302// default key length and |EVP_CIPHER_flags| will return a value with
303// |EVP_CIPH_VARIABLE_LENGTH| set.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700304OPENSSL_EXPORT unsigned EVP_CIPHER_key_length(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700305
David Benjamin4512b792017-08-18 19:21:50 -0400306// EVP_CIPHER_iv_length returns the IV size, in bytes, of |cipher|, or zero if
307// |cipher| doesn't take an IV.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700308OPENSSL_EXPORT unsigned EVP_CIPHER_iv_length(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700309
David Benjamin4512b792017-08-18 19:21:50 -0400310// EVP_CIPHER_flags returns a value which is the OR of zero or more
311// |EVP_CIPH_*| flags.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700312OPENSSL_EXPORT uint32_t EVP_CIPHER_flags(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700313
David Benjamin4512b792017-08-18 19:21:50 -0400314// EVP_CIPHER_mode returns one of the cipher mode values enumerated below.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700315OPENSSL_EXPORT uint32_t EVP_CIPHER_mode(const EVP_CIPHER *cipher);
Adam Langley95c29f32014-06-20 12:00:00 -0700316
317
David Benjamin4512b792017-08-18 19:21:50 -0400318// Key derivation.
Adam Langley95c29f32014-06-20 12:00:00 -0700319
David Benjamin4512b792017-08-18 19:21:50 -0400320// EVP_BytesToKey generates a key and IV for the cipher |type| by iterating
321// |md| |count| times using |data| and |salt|. On entry, the |key| and |iv|
322// buffers must have enough space to hold a key and IV for |type|. It returns
323// the length of the key on success or zero on error.
Adam Langleyeb7d2ed2014-07-30 16:02:14 -0700324OPENSSL_EXPORT int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md,
325 const uint8_t *salt, const uint8_t *data,
326 size_t data_len, unsigned count, uint8_t *key,
327 uint8_t *iv);
Adam Langley95c29f32014-06-20 12:00:00 -0700328
329
David Benjamin4512b792017-08-18 19:21:50 -0400330// Cipher modes (for |EVP_CIPHER_mode|).
Adam Langley95c29f32014-06-20 12:00:00 -0700331
332#define EVP_CIPH_STREAM_CIPHER 0x0
333#define EVP_CIPH_ECB_MODE 0x1
334#define EVP_CIPH_CBC_MODE 0x2
335#define EVP_CIPH_CFB_MODE 0x3
336#define EVP_CIPH_OFB_MODE 0x4
337#define EVP_CIPH_CTR_MODE 0x5
338#define EVP_CIPH_GCM_MODE 0x6
Matt Braithwaite12fe1b22015-07-28 16:49:58 -0700339#define EVP_CIPH_XTS_MODE 0x7
Adam Langley95c29f32014-06-20 12:00:00 -0700340
341
David Benjamin4512b792017-08-18 19:21:50 -0400342// Cipher flags (for |EVP_CIPHER_flags|).
Adam Langley95c29f32014-06-20 12:00:00 -0700343
David Benjamin4512b792017-08-18 19:21:50 -0400344// EVP_CIPH_VARIABLE_LENGTH indicates that the cipher takes a variable length
345// key.
Adam Langley95c29f32014-06-20 12:00:00 -0700346#define EVP_CIPH_VARIABLE_LENGTH 0x40
347
David Benjamin4512b792017-08-18 19:21:50 -0400348// EVP_CIPH_ALWAYS_CALL_INIT indicates that the |init| function for the cipher
349// should always be called when initialising a new operation, even if the key
350// is NULL to indicate that the same key is being used.
Adam Langley95c29f32014-06-20 12:00:00 -0700351#define EVP_CIPH_ALWAYS_CALL_INIT 0x80
352
David Benjamin4512b792017-08-18 19:21:50 -0400353// EVP_CIPH_CUSTOM_IV indicates that the cipher manages the IV itself rather
354// than keeping it in the |iv| member of |EVP_CIPHER_CTX|.
Adam Langley95c29f32014-06-20 12:00:00 -0700355#define EVP_CIPH_CUSTOM_IV 0x100
356
David Benjamin4512b792017-08-18 19:21:50 -0400357// EVP_CIPH_CTRL_INIT indicates that EVP_CTRL_INIT should be used when
358// initialising an |EVP_CIPHER_CTX|.
Adam Langley95c29f32014-06-20 12:00:00 -0700359#define EVP_CIPH_CTRL_INIT 0x200
360
David Benjamin4512b792017-08-18 19:21:50 -0400361// EVP_CIPH_FLAG_CUSTOM_CIPHER indicates that the cipher manages blocking
362// itself. This causes EVP_(En|De)crypt_ex to be simple wrapper functions.
Adam Langley95c29f32014-06-20 12:00:00 -0700363#define EVP_CIPH_FLAG_CUSTOM_CIPHER 0x400
364
David Benjamin4512b792017-08-18 19:21:50 -0400365// EVP_CIPH_FLAG_AEAD_CIPHER specifies that the cipher is an AEAD. This is an
366// older version of the proper AEAD interface. See aead.h for the current
367// one.
Adam Langley95c29f32014-06-20 12:00:00 -0700368#define EVP_CIPH_FLAG_AEAD_CIPHER 0x800
369
David Benjamin4512b792017-08-18 19:21:50 -0400370// EVP_CIPH_CUSTOM_COPY indicates that the |ctrl| callback should be called
371// with |EVP_CTRL_COPY| at the end of normal |EVP_CIPHER_CTX_copy|
372// processing.
Adam Langley7578f3f2014-07-24 17:42:11 -0700373#define EVP_CIPH_CUSTOM_COPY 0x1000
374
Adam Langley95c29f32014-06-20 12:00:00 -0700375
David Benjamin4512b792017-08-18 19:21:50 -0400376// Deprecated functions
Adam Langley704453f2014-09-23 16:19:16 -0700377
David Benjamin4512b792017-08-18 19:21:50 -0400378// EVP_CipherInit acts like EVP_CipherInit_ex except that |EVP_CIPHER_CTX_init|
379// is called on |cipher| first, if |cipher| is not NULL.
Adam Langley704453f2014-09-23 16:19:16 -0700380OPENSSL_EXPORT int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
381 const uint8_t *key, const uint8_t *iv,
382 int enc);
383
David Benjamin4512b792017-08-18 19:21:50 -0400384// EVP_EncryptInit calls |EVP_CipherInit| with |enc| equal to one.
Adam Langley704453f2014-09-23 16:19:16 -0700385OPENSSL_EXPORT int EVP_EncryptInit(EVP_CIPHER_CTX *ctx,
386 const EVP_CIPHER *cipher, const uint8_t *key,
387 const uint8_t *iv);
388
David Benjamin4512b792017-08-18 19:21:50 -0400389// EVP_DecryptInit calls |EVP_CipherInit| with |enc| equal to zero.
Adam Langley704453f2014-09-23 16:19:16 -0700390OPENSSL_EXPORT int EVP_DecryptInit(EVP_CIPHER_CTX *ctx,
391 const EVP_CIPHER *cipher, const uint8_t *key,
392 const uint8_t *iv);
393
David Benjamin4512b792017-08-18 19:21:50 -0400394// EVP_add_cipher_alias does nothing and returns one.
Adam Langley704453f2014-09-23 16:19:16 -0700395OPENSSL_EXPORT int EVP_add_cipher_alias(const char *a, const char *b);
396
David Benjamin4512b792017-08-18 19:21:50 -0400397// EVP_get_cipherbyname returns an |EVP_CIPHER| given a human readable name in
398// |name|, or NULL if the name is unknown.
Adam Langley704453f2014-09-23 16:19:16 -0700399OPENSSL_EXPORT const EVP_CIPHER *EVP_get_cipherbyname(const char *name);
400
David Benjamin4512b792017-08-18 19:21:50 -0400401// These AEADs are deprecated AES-GCM implementations that set
402// |EVP_CIPH_FLAG_CUSTOM_CIPHER|. Use |EVP_aead_aes_128_gcm| and
403// |EVP_aead_aes_256_gcm| instead.
Adam Langley5f889992015-11-04 14:05:00 -0800404OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_128_gcm(void);
405OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_256_gcm(void);
406
David Benjamin4512b792017-08-18 19:21:50 -0400407// These are deprecated, 192-bit version of AES.
Adam Langley5f889992015-11-04 14:05:00 -0800408OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ecb(void);
409OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_cbc(void);
410OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_ctr(void);
411OPENSSL_EXPORT const EVP_CIPHER *EVP_aes_192_gcm(void);
412
Adam Langley704453f2014-09-23 16:19:16 -0700413
David Benjamin4512b792017-08-18 19:21:50 -0400414// Private functions.
Adam Langley95c29f32014-06-20 12:00:00 -0700415
David Benjamin4512b792017-08-18 19:21:50 -0400416// EVP_CIPH_NO_PADDING disables padding in block ciphers.
Adam Langley95c29f32014-06-20 12:00:00 -0700417#define EVP_CIPH_NO_PADDING 0x800
418
David Benjamin4512b792017-08-18 19:21:50 -0400419// EVP_CIPHER_CTX_ctrl commands.
Adam Langley95c29f32014-06-20 12:00:00 -0700420#define EVP_CTRL_INIT 0x0
421#define EVP_CTRL_SET_KEY_LENGTH 0x1
422#define EVP_CTRL_GET_RC2_KEY_BITS 0x2
423#define EVP_CTRL_SET_RC2_KEY_BITS 0x3
424#define EVP_CTRL_GET_RC5_ROUNDS 0x4
425#define EVP_CTRL_SET_RC5_ROUNDS 0x5
426#define EVP_CTRL_RAND_KEY 0x6
427#define EVP_CTRL_PBE_PRF_NID 0x7
428#define EVP_CTRL_COPY 0x8
429#define EVP_CTRL_GCM_SET_IVLEN 0x9
430#define EVP_CTRL_GCM_GET_TAG 0x10
431#define EVP_CTRL_GCM_SET_TAG 0x11
432#define EVP_CTRL_GCM_SET_IV_FIXED 0x12
433#define EVP_CTRL_GCM_IV_GEN 0x13
Adam Langley95c29f32014-06-20 12:00:00 -0700434#define EVP_CTRL_AEAD_SET_MAC_KEY 0x17
David Benjamin4512b792017-08-18 19:21:50 -0400435// Set the GCM invocation field, decrypt only
Adam Langley95c29f32014-06-20 12:00:00 -0700436#define EVP_CTRL_GCM_SET_IV_INV 0x18
437
David Benjamin4512b792017-08-18 19:21:50 -0400438// GCM TLS constants
439// Length of fixed part of IV derived from PRF
Adam Langley95c29f32014-06-20 12:00:00 -0700440#define EVP_GCM_TLS_FIXED_IV_LEN 4
David Benjamin4512b792017-08-18 19:21:50 -0400441// Length of explicit part of IV part of TLS records
Adam Langley95c29f32014-06-20 12:00:00 -0700442#define EVP_GCM_TLS_EXPLICIT_IV_LEN 8
David Benjamin4512b792017-08-18 19:21:50 -0400443// Length of tag for TLS
Adam Langley95c29f32014-06-20 12:00:00 -0700444#define EVP_GCM_TLS_TAG_LEN 16
445
446#define EVP_MAX_KEY_LENGTH 64
447#define EVP_MAX_IV_LENGTH 16
448#define EVP_MAX_BLOCK_LENGTH 32
449
450struct evp_cipher_ctx_st {
David Benjamin4512b792017-08-18 19:21:50 -0400451 // cipher contains the underlying cipher for this context.
Adam Langley95c29f32014-06-20 12:00:00 -0700452 const EVP_CIPHER *cipher;
453
David Benjamin4512b792017-08-18 19:21:50 -0400454 // app_data is a pointer to opaque, user data.
455 void *app_data; // application stuff
Adam Langley95c29f32014-06-20 12:00:00 -0700456
David Benjamin4512b792017-08-18 19:21:50 -0400457 // cipher_data points to the |cipher| specific state.
Adam Langley95c29f32014-06-20 12:00:00 -0700458 void *cipher_data;
459
David Benjamin4512b792017-08-18 19:21:50 -0400460 // key_len contains the length of the key, which may differ from
461 // |cipher->key_len| if the cipher can take a variable key length.
Adam Langley95c29f32014-06-20 12:00:00 -0700462 unsigned key_len;
463
David Benjamin4512b792017-08-18 19:21:50 -0400464 // encrypt is one if encrypting and zero if decrypting.
Adam Langley95c29f32014-06-20 12:00:00 -0700465 int encrypt;
466
David Benjamin4512b792017-08-18 19:21:50 -0400467 // flags contains the OR of zero or more |EVP_CIPH_*| flags, above.
Adam Langley95c29f32014-06-20 12:00:00 -0700468 uint32_t flags;
469
David Benjamin4512b792017-08-18 19:21:50 -0400470 // oiv contains the original IV value.
Adam Langley95c29f32014-06-20 12:00:00 -0700471 uint8_t oiv[EVP_MAX_IV_LENGTH];
472
David Benjamin4512b792017-08-18 19:21:50 -0400473 // iv contains the current IV value, which may have been updated.
Adam Langley95c29f32014-06-20 12:00:00 -0700474 uint8_t iv[EVP_MAX_IV_LENGTH];
475
David Benjamin4512b792017-08-18 19:21:50 -0400476 // buf contains a partial block which is used by, for example, CTR mode to
477 // store unused keystream bytes.
Adam Langley95c29f32014-06-20 12:00:00 -0700478 uint8_t buf[EVP_MAX_BLOCK_LENGTH];
479
David Benjamin4512b792017-08-18 19:21:50 -0400480 // buf_len contains the number of bytes of a partial block contained in
481 // |buf|.
Adam Langley95c29f32014-06-20 12:00:00 -0700482 int buf_len;
483
David Benjamin4512b792017-08-18 19:21:50 -0400484 // num contains the number of bytes of |iv| which are valid for modes that
485 // manage partial blocks themselves.
David Benjamin0e21f412016-04-16 15:20:07 -0400486 unsigned num;
Adam Langley95c29f32014-06-20 12:00:00 -0700487
David Benjamin4512b792017-08-18 19:21:50 -0400488 // final_used is non-zero if the |final| buffer contains plaintext.
Adam Langley95c29f32014-06-20 12:00:00 -0700489 int final_used;
490
David Benjamin4512b792017-08-18 19:21:50 -0400491 // block_mask contains |cipher->block_size| minus one. (The block size
492 // assumed to be a power of two.)
Adam Langley95c29f32014-06-20 12:00:00 -0700493 int block_mask;
494
David Benjamin4512b792017-08-18 19:21:50 -0400495 uint8_t final[EVP_MAX_BLOCK_LENGTH]; // possible final block
Adam Langley95c29f32014-06-20 12:00:00 -0700496} /* EVP_CIPHER_CTX */;
497
498typedef struct evp_cipher_info_st {
499 const EVP_CIPHER *cipher;
500 unsigned char iv[EVP_MAX_IV_LENGTH];
501} EVP_CIPHER_INFO;
502
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700503struct evp_cipher_st {
David Benjamin4512b792017-08-18 19:21:50 -0400504 // type contains a NID identifing the cipher. (e.g. NID_aes_128_gcm.)
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700505 int nid;
506
David Benjamin4512b792017-08-18 19:21:50 -0400507 // block_size contains the block size, in bytes, of the cipher, or 1 for a
508 // stream cipher.
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700509 unsigned block_size;
510
David Benjamin4512b792017-08-18 19:21:50 -0400511 // key_len contains the key size, in bytes, for the cipher. If the cipher
512 // takes a variable key size then this contains the default size.
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700513 unsigned key_len;
514
David Benjamin4512b792017-08-18 19:21:50 -0400515 // iv_len contains the IV size, in bytes, or zero if inapplicable.
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700516 unsigned iv_len;
517
David Benjamin4512b792017-08-18 19:21:50 -0400518 // ctx_size contains the size, in bytes, of the per-key context for this
519 // cipher.
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700520 unsigned ctx_size;
521
David Benjamin4512b792017-08-18 19:21:50 -0400522 // flags contains the OR of a number of flags. See |EVP_CIPH_*|.
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700523 uint32_t flags;
524
David Benjamin4512b792017-08-18 19:21:50 -0400525 // app_data is a pointer to opaque, user data.
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700526 void *app_data;
527
528 int (*init)(EVP_CIPHER_CTX *ctx, const uint8_t *key, const uint8_t *iv,
529 int enc);
530
531 int (*cipher)(EVP_CIPHER_CTX *ctx, uint8_t *out, const uint8_t *in,
532 size_t inl);
533
David Benjamin4512b792017-08-18 19:21:50 -0400534 // cleanup, if non-NULL, releases memory associated with the context. It is
535 // called if |EVP_CTRL_INIT| succeeds. Note that |init| may not have been
536 // called at this point.
Adam Langleyc3ef76f2015-04-13 14:34:17 -0700537 void (*cleanup)(EVP_CIPHER_CTX *);
538
539 int (*ctrl)(EVP_CIPHER_CTX *, int type, int arg, void *ptr);
540};
541
Adam Langley95c29f32014-06-20 12:00:00 -0700542
543#if defined(__cplusplus)
David Benjamin4512b792017-08-18 19:21:50 -0400544} // extern C
David Benjaminf0e935d2016-09-06 18:10:19 -0400545
546#if !defined(BORINGSSL_NO_CXX)
547extern "C++" {
548
549namespace bssl {
550
551BORINGSSL_MAKE_DELETER(EVP_CIPHER_CTX, EVP_CIPHER_CTX_free)
552
553using ScopedEVP_CIPHER_CTX =
554 internal::StackAllocated<EVP_CIPHER_CTX, int, EVP_CIPHER_CTX_init,
555 EVP_CIPHER_CTX_cleanup>;
556
557} // namespace bssl
558
559} // extern C++
560#endif
561
Adam Langley95c29f32014-06-20 12:00:00 -0700562#endif
563
David Benjamin689be0f2015-02-11 15:55:26 -0500564#define CIPHER_R_AES_KEY_SETUP_FAILED 100
565#define CIPHER_R_BAD_DECRYPT 101
566#define CIPHER_R_BAD_KEY_LENGTH 102
567#define CIPHER_R_BUFFER_TOO_SMALL 103
568#define CIPHER_R_CTRL_NOT_IMPLEMENTED 104
569#define CIPHER_R_CTRL_OPERATION_NOT_IMPLEMENTED 105
570#define CIPHER_R_DATA_NOT_MULTIPLE_OF_BLOCK_LENGTH 106
571#define CIPHER_R_INITIALIZATION_ERROR 107
572#define CIPHER_R_INPUT_NOT_INITIALIZED 108
573#define CIPHER_R_INVALID_AD_SIZE 109
574#define CIPHER_R_INVALID_KEY_LENGTH 110
575#define CIPHER_R_INVALID_NONCE_SIZE 111
576#define CIPHER_R_INVALID_OPERATION 112
577#define CIPHER_R_IV_TOO_LARGE 113
578#define CIPHER_R_NO_CIPHER_SET 114
579#define CIPHER_R_OUTPUT_ALIASES_INPUT 115
580#define CIPHER_R_TAG_TOO_LARGE 116
581#define CIPHER_R_TOO_LARGE 117
582#define CIPHER_R_UNSUPPORTED_AD_SIZE 118
583#define CIPHER_R_UNSUPPORTED_INPUT_SIZE 119
584#define CIPHER_R_UNSUPPORTED_KEY_SIZE 120
585#define CIPHER_R_UNSUPPORTED_NONCE_SIZE 121
586#define CIPHER_R_UNSUPPORTED_TAG_SIZE 122
587#define CIPHER_R_WRONG_FINAL_BLOCK_LENGTH 123
David Benjaminb34f5102015-02-28 03:59:33 -0500588#define CIPHER_R_NO_DIRECTION_SET 124
Steven Valdez2f3404b2017-05-24 16:54:35 -0400589#define CIPHER_R_INVALID_NONCE 125
Adam Langley95c29f32014-06-20 12:00:00 -0700590
David Benjamin4512b792017-08-18 19:21:50 -0400591#endif // OPENSSL_HEADER_CIPHER_H