xref: /freebsd-src/crypto/openssl/providers/implementations/ciphers/cipher_aria.c (revision b077aed33b7b6aefca7b17ddb250cf521f938613)
1*b077aed3SPierre Pronchery /*
2*b077aed3SPierre Pronchery  * Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
3*b077aed3SPierre Pronchery  *
4*b077aed3SPierre Pronchery  * Licensed under the Apache License 2.0 (the "License").  You may not use
5*b077aed3SPierre Pronchery  * this file except in compliance with the License.  You can obtain a copy
6*b077aed3SPierre Pronchery  * in the file LICENSE in the source distribution or at
7*b077aed3SPierre Pronchery  * https://www.openssl.org/source/license.html
8*b077aed3SPierre Pronchery  */
9*b077aed3SPierre Pronchery 
10*b077aed3SPierre Pronchery /* Dispatch functions for ARIA cipher modes ecb, cbc, ofb, cfb, ctr */
11*b077aed3SPierre Pronchery 
12*b077aed3SPierre Pronchery #include "cipher_aria.h"
13*b077aed3SPierre Pronchery #include "prov/implementations.h"
14*b077aed3SPierre Pronchery #include "prov/providercommon.h"
15*b077aed3SPierre Pronchery 
16*b077aed3SPierre Pronchery static OSSL_FUNC_cipher_freectx_fn aria_freectx;
17*b077aed3SPierre Pronchery static OSSL_FUNC_cipher_dupctx_fn aria_dupctx;
18*b077aed3SPierre Pronchery 
aria_freectx(void * vctx)19*b077aed3SPierre Pronchery static void aria_freectx(void *vctx)
20*b077aed3SPierre Pronchery {
21*b077aed3SPierre Pronchery     PROV_ARIA_CTX *ctx = (PROV_ARIA_CTX *)vctx;
22*b077aed3SPierre Pronchery 
23*b077aed3SPierre Pronchery     ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
24*b077aed3SPierre Pronchery     OPENSSL_clear_free(ctx,  sizeof(*ctx));
25*b077aed3SPierre Pronchery }
26*b077aed3SPierre Pronchery 
aria_dupctx(void * ctx)27*b077aed3SPierre Pronchery static void *aria_dupctx(void *ctx)
28*b077aed3SPierre Pronchery {
29*b077aed3SPierre Pronchery     PROV_ARIA_CTX *in = (PROV_ARIA_CTX *)ctx;
30*b077aed3SPierre Pronchery     PROV_ARIA_CTX *ret;
31*b077aed3SPierre Pronchery 
32*b077aed3SPierre Pronchery     if (!ossl_prov_is_running())
33*b077aed3SPierre Pronchery         return NULL;
34*b077aed3SPierre Pronchery 
35*b077aed3SPierre Pronchery     ret = OPENSSL_malloc(sizeof(*ret));
36*b077aed3SPierre Pronchery     if (ret == NULL) {
37*b077aed3SPierre Pronchery         ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
38*b077aed3SPierre Pronchery         return NULL;
39*b077aed3SPierre Pronchery     }
40*b077aed3SPierre Pronchery     in->base.hw->copyctx(&ret->base, &in->base);
41*b077aed3SPierre Pronchery 
42*b077aed3SPierre Pronchery     return ret;
43*b077aed3SPierre Pronchery }
44*b077aed3SPierre Pronchery 
45*b077aed3SPierre Pronchery /* ossl_aria256ecb_functions */
46*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ecb, ECB, 0, 256, 128, 0, block)
47*b077aed3SPierre Pronchery /* ossl_aria192ecb_functions */
48*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ecb, ECB, 0, 192, 128, 0, block)
49*b077aed3SPierre Pronchery /* ossl_aria128ecb_functions */
50*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ecb, ECB, 0, 128, 128, 0, block)
51*b077aed3SPierre Pronchery /* ossl_aria256cbc_functions */
52*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cbc, CBC, 0, 256, 128, 128, block)
53*b077aed3SPierre Pronchery /* ossl_aria192cbc_functions */
54*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cbc, CBC, 0, 192, 128, 128, block)
55*b077aed3SPierre Pronchery /* ossl_aria128cbc_functions */
56*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cbc, CBC, 0, 128, 128, 128, block)
57*b077aed3SPierre Pronchery /* ossl_aria256ofb_functions */
58*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 256, 8, 128, stream)
59*b077aed3SPierre Pronchery /* ossl_aria192ofb_functions */
60*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 192, 8, 128, stream)
61*b077aed3SPierre Pronchery /* ossl_aria128ofb_functions */
62*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 128, 8, 128, stream)
63*b077aed3SPierre Pronchery /* ossl_aria256cfb_functions */
64*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb,  CFB, 0, 256, 8, 128, stream)
65*b077aed3SPierre Pronchery /* ossl_aria192cfb_functions */
66*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb,  CFB, 0, 192, 8, 128, stream)
67*b077aed3SPierre Pronchery /* ossl_aria128cfb_functions */
68*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb,  CFB, 0, 128, 8, 128, stream)
69*b077aed3SPierre Pronchery /* ossl_aria256cfb1_functions */
70*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 256, 8, 128, stream)
71*b077aed3SPierre Pronchery /* ossl_aria192cfb1_functions */
72*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 192, 8, 128, stream)
73*b077aed3SPierre Pronchery /* ossl_aria128cfb1_functions */
74*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 128, 8, 128, stream)
75*b077aed3SPierre Pronchery /* ossl_aria256cfb8_functions */
76*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 256, 8, 128, stream)
77*b077aed3SPierre Pronchery /* ossl_aria192cfb8_functions */
78*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 192, 8, 128, stream)
79*b077aed3SPierre Pronchery /* ossl_aria128cfb8_functions */
80*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 128, 8, 128, stream)
81*b077aed3SPierre Pronchery /* ossl_aria256ctr_functions */
82*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ctr, CTR, 0, 256, 8, 128, stream)
83*b077aed3SPierre Pronchery /* ossl_aria192ctr_functions */
84*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ctr, CTR, 0, 192, 8, 128, stream)
85*b077aed3SPierre Pronchery /* ossl_aria128ctr_functions */
86*b077aed3SPierre Pronchery IMPLEMENT_generic_cipher(aria, ARIA, ctr, CTR, 0, 128, 8, 128, stream)
87