]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/default/ciphers/cipher_aria.c
Cleanup ciphers and Add 3des ciphers.
[thirdparty/openssl.git] / providers / default / ciphers / cipher_aria.c
CommitLineData
e1178600
SL
1/*
2 * Copyright 2019 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/* Dispatch functions for ARIA cipher modes ecb, cbc, ofb, cfb, ctr */
11
4a42e264
SL
12#include "cipher_aria.h"
13#include "internal/provider_algs.h"
e1178600
SL
14
15static OSSL_OP_cipher_freectx_fn aria_freectx;
16static OSSL_OP_cipher_dupctx_fn aria_dupctx;
17
18static void aria_freectx(void *vctx)
19{
20 PROV_ARIA_CTX *ctx = (PROV_ARIA_CTX *)vctx;
21
22 OPENSSL_clear_free(ctx, sizeof(*ctx));
23}
24
25static void *aria_dupctx(void *ctx)
26{
27 PROV_ARIA_CTX *in = (PROV_ARIA_CTX *)ctx;
28 PROV_ARIA_CTX *ret = OPENSSL_malloc(sizeof(*ret));
29
30 if (ret == NULL) {
31 ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
32 return NULL;
33 }
34 *ret = *in;
35
36 return ret;
37}
38
39/* aria256ecb_functions */
40IMPLEMENT_generic_cipher(aria, ARIA, ecb, ECB, 0, 256, 128, 0, block)
41/* aria192ecb_functions */
42IMPLEMENT_generic_cipher(aria, ARIA, ecb, ECB, 0, 192, 128, 0, block)
43/* aria128ecb_functions */
44IMPLEMENT_generic_cipher(aria, ARIA, ecb, ECB, 0, 128, 128, 0, block)
45/* aria256cbc_functions */
46IMPLEMENT_generic_cipher(aria, ARIA, cbc, CBC, 0, 256, 128, 128, block)
47/* aria192cbc_functions */
48IMPLEMENT_generic_cipher(aria, ARIA, cbc, CBC, 0, 192, 128, 128, block)
49/* aria128cbc_functions */
50IMPLEMENT_generic_cipher(aria, ARIA, cbc, CBC, 0, 128, 128, 128, block)
51/* aria256ofb_functions */
52IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 256, 8, 128, stream)
53/* aria192ofb_functions */
54IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 192, 8, 128, stream)
55/* aria128ofb_functions */
56IMPLEMENT_generic_cipher(aria, ARIA, ofb, OFB, 0, 128, 8, 128, stream)
57/* aria256cfb_functions */
58IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 256, 8, 128, stream)
59/* aria192cfb_functions */
60IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 192, 8, 128, stream)
61/* aria128cfb_functions */
62IMPLEMENT_generic_cipher(aria, ARIA, cfb, CFB, 0, 128, 8, 128, stream)
63/* aria256cfb1_functions */
64IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 256, 8, 128, stream)
65/* aria192cfb1_functions */
66IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 192, 8, 128, stream)
67/* aria128cfb1_functions */
68IMPLEMENT_generic_cipher(aria, ARIA, cfb1, CFB, 0, 128, 8, 128, stream)
69/* aria256cfb8_functions */
70IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 256, 8, 128, stream)
71/* aria192cfb8_functions */
72IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 192, 8, 128, stream)
73/* aria128cfb8_functions */
74IMPLEMENT_generic_cipher(aria, ARIA, cfb8, CFB, 0, 128, 8, 128, stream)
75/* aria256ctr_functions */
76IMPLEMENT_generic_cipher(aria, ARIA, ctr, CTR, 0, 256, 8, 128, stream)
77/* aria192ctr_functions */
78IMPLEMENT_generic_cipher(aria, ARIA, ctr, CTR, 0, 192, 8, 128, stream)
79/* aria128ctr_functions */
80IMPLEMENT_generic_cipher(aria, ARIA, ctr, CTR, 0, 128, 8, 128, stream)