Add AES_CBC_CTS ciphers to providers
[openssl.git] / providers / implementations / ciphers / cipher_aes.c
1 /*
2  * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 /*
11  * AES low level APIs are deprecated for public use, but still ok for internal
12  * use where we're using them to implement the higher level EVP interface, as is
13  * the case here.
14  */
15 #include "internal/deprecated.h"
16
17 /* Dispatch functions for AES cipher modes ecb, cbc, ofb, cfb, ctr */
18
19 #include "cipher_aes.h"
20 #include "prov/implementations.h"
21
22 static OSSL_FUNC_cipher_freectx_fn aes_freectx;
23 static OSSL_FUNC_cipher_dupctx_fn aes_dupctx;
24
25 static void aes_freectx(void *vctx)
26 {
27     PROV_AES_CTX *ctx = (PROV_AES_CTX *)vctx;
28
29     cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
30     OPENSSL_clear_free(ctx,  sizeof(*ctx));
31 }
32
33 static void *aes_dupctx(void *ctx)
34 {
35     PROV_AES_CTX *in = (PROV_AES_CTX *)ctx;
36     PROV_AES_CTX *ret = OPENSSL_malloc(sizeof(*ret));
37
38     if (ret == NULL) {
39         ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
40         return NULL;
41     }
42     in->base.hw->copyctx(&ret->base, &in->base);
43
44     return ret;
45 }
46
47 /* aes256ecb_functions */
48 IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 256, 128, 0, block)
49 /* aes192ecb_functions */
50 IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 192, 128, 0, block)
51 /* aes128ecb_functions */
52 IMPLEMENT_generic_cipher(aes, AES, ecb, ECB, 0, 128, 128, 0, block)
53 /* aes256cbc_functions */
54 IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 256, 128, 128, block)
55 /* aes192cbc_functions */
56 IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 192, 128, 128, block)
57 /* aes128cbc_functions */
58 IMPLEMENT_generic_cipher(aes, AES, cbc, CBC, 0, 128, 128, 128, block)
59 /* aes256ofb_functions */
60 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 256, 8, 128, stream)
61 /* aes192ofb_functions */
62 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 192, 8, 128, stream)
63 /* aes128ofb_functions */
64 IMPLEMENT_generic_cipher(aes, AES, ofb, OFB, 0, 128, 8, 128, stream)
65 /* aes256cfb_functions */
66 IMPLEMENT_generic_cipher(aes, AES, cfb,  CFB, 0, 256, 8, 128, stream)
67 /* aes192cfb_functions */
68 IMPLEMENT_generic_cipher(aes, AES, cfb,  CFB, 0, 192, 8, 128, stream)
69 /* aes128cfb_functions */
70 IMPLEMENT_generic_cipher(aes, AES, cfb,  CFB, 0, 128, 8, 128, stream)
71 /* aes256cfb1_functions */
72 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 256, 8, 128, stream)
73 /* aes192cfb1_functions */
74 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 192, 8, 128, stream)
75 /* aes128cfb1_functions */
76 IMPLEMENT_generic_cipher(aes, AES, cfb1, CFB, 0, 128, 8, 128, stream)
77 /* aes256cfb8_functions */
78 IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 256, 8, 128, stream)
79 /* aes192cfb8_functions */
80 IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 192, 8, 128, stream)
81 /* aes128cfb8_functions */
82 IMPLEMENT_generic_cipher(aes, AES, cfb8, CFB, 0, 128, 8, 128, stream)
83 /* aes256ctr_functions */
84 IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 256, 8, 128, stream)
85 /* aes192ctr_functions */
86 IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 192, 8, 128, stream)
87 /* aes128ctr_functions */
88 IMPLEMENT_generic_cipher(aes, AES, ctr, CTR, 0, 128, 8, 128, stream)
89
90 #include "cipher_aes_cts.inc"