Fix Issue OSS-Fuzz: Branch on uninitialized memory (in ccm code).
[openssl.git] / providers / common / ciphers / cipher_aria_ccm.c
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 CCM mode */
11
12 #include "cipher_locl.h"
13
14 static void *aria_ccm_newctx(void *provctx, size_t keybits)
15 {
16     PROV_ARIA_CCM_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
17
18     if (ctx != NULL)
19         ccm_initctx(&ctx->base, keybits, PROV_ARIA_HW_ccm(keybits));
20     return ctx;
21 }
22
23 static OSSL_OP_cipher_freectx_fn aria_ccm_freectx;
24 static void aria_ccm_freectx(void *vctx)
25 {
26     PROV_ARIA_CCM_CTX *ctx = (PROV_ARIA_CCM_CTX *)vctx;
27
28     ccm_finalctx((PROV_CCM_CTX *)ctx);
29     OPENSSL_clear_free(ctx,  sizeof(*ctx));
30 }
31
32 /* aria128ccm functions */
33 IMPLEMENT_aead_cipher(aria, ccm, CCM, AEAD_FLAGS, 128, 8, 96);
34 /* aria192ccm functions */
35 IMPLEMENT_aead_cipher(aria, ccm, CCM, AEAD_FLAGS, 192, 8, 96);
36 /* aria256ccm functions */
37 IMPLEMENT_aead_cipher(aria, ccm, CCM, AEAD_FLAGS, 256, 8, 96);
38