566583d141f67efaddc9ed8f474c1644be730f5b
[oweals/openssl.git] / providers / implementations / ciphers / cipher_cast5.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  * CAST low level APIs are deprecated for public use, but still ok for
12  * internal use.
13  */
14 #include "internal/deprecated.h"
15
16 /* Dispatch functions for cast cipher modes ecb, cbc, ofb, cfb */
17
18 #include "cipher_cast.h"
19 #include "prov/implementations.h"
20 #include "prov/providercommonerr.h"
21
22 #define CAST5_FLAGS (EVP_CIPH_VARIABLE_LENGTH)
23
24 static OSSL_OP_cipher_freectx_fn cast5_freectx;
25 static OSSL_OP_cipher_dupctx_fn cast5_dupctx;
26
27 static void cast5_freectx(void *vctx)
28 {
29     PROV_CAST_CTX *ctx = (PROV_CAST_CTX *)vctx;
30
31     OPENSSL_clear_free(ctx,  sizeof(*ctx));
32 }
33
34 static void *cast5_dupctx(void *ctx)
35 {
36     PROV_CAST_CTX *in = (PROV_CAST_CTX *)ctx;
37     PROV_CAST_CTX *ret = OPENSSL_malloc(sizeof(*ret));
38
39     if (ret == NULL) {
40         ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
41         return NULL;
42     }
43     *ret = *in;
44
45     return ret;
46 }
47
48 /* cast5128ecb_functions */
49 IMPLEMENT_var_keylen_cipher(cast5, CAST, ecb, ECB, CAST5_FLAGS, 128, 64, 0, block)
50 /* cast5128cbc_functions */
51 IMPLEMENT_var_keylen_cipher(cast5, CAST, cbc, CBC, CAST5_FLAGS, 128, 64, 64, block)
52 /* cast5128ofb64_functions */
53 IMPLEMENT_var_keylen_cipher(cast5, CAST, ofb64, OFB, CAST5_FLAGS, 128, 8, 64, stream)
54 /* cast5128cfb64_functions */
55 IMPLEMENT_var_keylen_cipher(cast5, CAST, cfb64,  CFB, CAST5_FLAGS, 128, 8, 64, stream)