blob: 3606bfc40c000a26e7c99bfad245be5cfb2777ce [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* ====================================================================
2 * Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
Srinivas Paladugudd42a612019-08-09 19:30:39 +00009 * notice, this list of conditions and the following disclaimer.
Adam Langleyd9e397b2015-01-22 14:27:53 -080010 *
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in
13 * the documentation and/or other materials provided with the
14 * distribution.
15 *
16 * 3. All advertising materials mentioning features or use of this
17 * software must display the following acknowledgment:
18 * "This product includes software developed by the OpenSSL Project
19 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
20 *
21 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
22 * endorse or promote products derived from this software without
23 * prior written permission. For written permission, please contact
24 * openssl-core@openssl.org.
25 *
26 * 5. Products derived from this software may not be called "OpenSSL"
27 * nor may "OpenSSL" appear in their names without prior written
28 * permission of the OpenSSL Project.
29 *
30 * 6. Redistributions of any form whatsoever must retain the following
31 * acknowledgment:
32 * "This product includes software developed by the OpenSSL Project
33 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
34 *
35 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
36 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
37 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
38 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
39 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
41 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
42 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
46 * OF THE POSSIBILITY OF SUCH DAMAGE.
47 * ==================================================================== */
48
49#ifndef OPENSSL_HEADER_AES_H
50#define OPENSSL_HEADER_AES_H
51
52#include <openssl/base.h>
53
54#if defined(__cplusplus)
55extern "C" {
56#endif
57
58
Robert Sloan8f860b12017-08-28 07:37:06 -070059// Raw AES functions.
Adam Langleyd9e397b2015-01-22 14:27:53 -080060
61
62#define AES_ENCRYPT 1
63#define AES_DECRYPT 0
64
Robert Sloan8f860b12017-08-28 07:37:06 -070065// AES_MAXNR is the maximum number of AES rounds.
Adam Langleyd9e397b2015-01-22 14:27:53 -080066#define AES_MAXNR 14
67
68#define AES_BLOCK_SIZE 16
69
Robert Sloan8f860b12017-08-28 07:37:06 -070070// aes_key_st should be an opaque type, but EVP requires that the size be
71// known.
Adam Langleyd9e397b2015-01-22 14:27:53 -080072struct aes_key_st {
73 uint32_t rd_key[4 * (AES_MAXNR + 1)];
74 unsigned rounds;
75};
76typedef struct aes_key_st AES_KEY;
77
Robert Sloan8f860b12017-08-28 07:37:06 -070078// AES_set_encrypt_key configures |aeskey| to encrypt with the |bits|-bit key,
Robert Sloanf63bd1f2019-04-16 09:26:20 -070079// |key|. |key| must point to |bits|/8 bytes. It returns zero on success and a
80// negative number if |bits| is an invalid AES key size.
Robert Sloan8f860b12017-08-28 07:37:06 -070081//
Robert Sloanf63bd1f2019-04-16 09:26:20 -070082// WARNING: this function breaks the usual return value convention.
Adam Langleyd9e397b2015-01-22 14:27:53 -080083OPENSSL_EXPORT int AES_set_encrypt_key(const uint8_t *key, unsigned bits,
84 AES_KEY *aeskey);
85
Robert Sloan8f860b12017-08-28 07:37:06 -070086// AES_set_decrypt_key configures |aeskey| to decrypt with the |bits|-bit key,
Robert Sloanf63bd1f2019-04-16 09:26:20 -070087// |key|. |key| must point to |bits|/8 bytes. It returns zero on success and a
88// negative number if |bits| is an invalid AES key size.
Robert Sloan8f860b12017-08-28 07:37:06 -070089//
Robert Sloanf63bd1f2019-04-16 09:26:20 -070090// WARNING: this function breaks the usual return value convention.
Adam Langleyd9e397b2015-01-22 14:27:53 -080091OPENSSL_EXPORT int AES_set_decrypt_key(const uint8_t *key, unsigned bits,
92 AES_KEY *aeskey);
93
Robert Sloan8f860b12017-08-28 07:37:06 -070094// AES_encrypt encrypts a single block from |in| to |out| with |key|. The |in|
95// and |out| pointers may overlap.
Adam Langleyd9e397b2015-01-22 14:27:53 -080096OPENSSL_EXPORT void AES_encrypt(const uint8_t *in, uint8_t *out,
97 const AES_KEY *key);
98
Robert Sloan8f860b12017-08-28 07:37:06 -070099// AES_decrypt decrypts a single block from |in| to |out| with |key|. The |in|
100// and |out| pointers may overlap.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800101OPENSSL_EXPORT void AES_decrypt(const uint8_t *in, uint8_t *out,
102 const AES_KEY *key);
103
104
Robert Sloan8f860b12017-08-28 07:37:06 -0700105// Block cipher modes.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800106
Robert Sloan8f860b12017-08-28 07:37:06 -0700107// AES_ctr128_encrypt encrypts (or decrypts, it's the same in CTR mode) |len|
108// bytes from |in| to |out|. The |num| parameter must be set to zero on the
109// first call and |ivec| will be incremented.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800110OPENSSL_EXPORT void AES_ctr128_encrypt(const uint8_t *in, uint8_t *out,
111 size_t len, const AES_KEY *key,
112 uint8_t ivec[AES_BLOCK_SIZE],
113 uint8_t ecount_buf[AES_BLOCK_SIZE],
114 unsigned int *num);
115
Robert Sloan8f860b12017-08-28 07:37:06 -0700116// AES_ecb_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) a single,
117// 16 byte block from |in| to |out|.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800118OPENSSL_EXPORT void AES_ecb_encrypt(const uint8_t *in, uint8_t *out,
119 const AES_KEY *key, const int enc);
120
Robert Sloan8f860b12017-08-28 07:37:06 -0700121// AES_cbc_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) |len|
122// bytes from |in| to |out|. The length must be a multiple of the block size.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800123OPENSSL_EXPORT void AES_cbc_encrypt(const uint8_t *in, uint8_t *out, size_t len,
124 const AES_KEY *key, uint8_t *ivec,
125 const int enc);
126
Robert Sloan8f860b12017-08-28 07:37:06 -0700127// AES_ofb128_encrypt encrypts (or decrypts, it's the same in OFB mode) |len|
128// bytes from |in| to |out|. The |num| parameter must be set to zero on the
129// first call.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800130OPENSSL_EXPORT void AES_ofb128_encrypt(const uint8_t *in, uint8_t *out,
131 size_t len, const AES_KEY *key,
132 uint8_t *ivec, int *num);
133
Robert Sloan8f860b12017-08-28 07:37:06 -0700134// AES_cfb128_encrypt encrypts (or decrypts, if |enc| == |AES_DECRYPT|) |len|
135// bytes from |in| to |out|. The |num| parameter must be set to zero on the
136// first call.
Adam Langleyd9e397b2015-01-22 14:27:53 -0800137OPENSSL_EXPORT void AES_cfb128_encrypt(const uint8_t *in, uint8_t *out,
138 size_t len, const AES_KEY *key,
139 uint8_t *ivec, int *num, int enc);
140
141
Robert Sloan8f860b12017-08-28 07:37:06 -0700142// AES key wrap.
143//
144// These functions implement AES Key Wrap mode, as defined in RFC 3394. They
145// should never be used except to interoperate with existing systems that use
146// this mode.
Adam Langleyf40f42d2015-03-24 18:25:20 -0700147
Robert Sloan8f860b12017-08-28 07:37:06 -0700148// AES_wrap_key performs AES key wrap on |in| which must be a multiple of 8
149// bytes. |iv| must point to an 8 byte value or be NULL to use the default IV.
150// |key| must have been configured for encryption. On success, it writes
151// |in_len| + 8 bytes to |out| and returns |in_len| + 8. Otherwise, it returns
152// -1.
Steven Valdezbb1ceac2016-10-07 10:34:51 -0400153OPENSSL_EXPORT int AES_wrap_key(const AES_KEY *key, const uint8_t *iv,
154 uint8_t *out, const uint8_t *in, size_t in_len);
155
Robert Sloan8f860b12017-08-28 07:37:06 -0700156// AES_unwrap_key performs AES key unwrap on |in| which must be a multiple of 8
157// bytes. |iv| must point to an 8 byte value or be NULL to use the default IV.
158// |key| must have been configured for decryption. On success, it writes
159// |in_len| - 8 bytes to |out| and returns |in_len| - 8. Otherwise, it returns
160// -1.
Steven Valdezbb1ceac2016-10-07 10:34:51 -0400161OPENSSL_EXPORT int AES_unwrap_key(const AES_KEY *key, const uint8_t *iv,
162 uint8_t *out, const uint8_t *in,
163 size_t in_len);
Adam Langleyf40f42d2015-03-24 18:25:20 -0700164
165
Adam Langleyd9e397b2015-01-22 14:27:53 -0800166#if defined(__cplusplus)
Robert Sloan8f860b12017-08-28 07:37:06 -0700167} // extern C
Adam Langleyd9e397b2015-01-22 14:27:53 -0800168#endif
169
Robert Sloan8f860b12017-08-28 07:37:06 -0700170#endif // OPENSSL_HEADER_AES_H