Add AES_CBC_CTS ciphers to providers
[openssl.git] / providers / implementations / ciphers / cipher_blowfish.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 /* Dispatch functions for Blowfish cipher modes ecb, cbc, ofb, cfb */
11
12 /*
13  * BF low level APIs are deprecated for public use, but still ok for internal
14  * use.
15  */
16 #include "internal/deprecated.h"
17
18 #include "cipher_blowfish.h"
19 #include "prov/implementations.h"
20
21 #define BF_FLAGS (EVP_CIPH_VARIABLE_LENGTH)
22
23 static OSSL_FUNC_cipher_freectx_fn blowfish_freectx;
24 static OSSL_FUNC_cipher_dupctx_fn blowfish_dupctx;
25
26 static void blowfish_freectx(void *vctx)
27 {
28     PROV_BLOWFISH_CTX *ctx = (PROV_BLOWFISH_CTX *)vctx;
29
30     cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx);
31     OPENSSL_clear_free(ctx,  sizeof(*ctx));
32 }
33
34 static void *blowfish_dupctx(void *ctx)
35 {
36     PROV_BLOWFISH_CTX *in = (PROV_BLOWFISH_CTX *)ctx;
37     PROV_BLOWFISH_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 /* bf_ecb_functions */
49 IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, ecb, ECB, BF_FLAGS, 128, 64, 0, block)
50 /* bf_cbc_functions */
51 IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, cbc, CBC, BF_FLAGS, 128, 64, 64, block)
52 /* bf_ofb_functions */
53 IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, ofb64, OFB, BF_FLAGS, 64, 8, 64, stream)
54 /* bf_cfb_functions */
55 IMPLEMENT_var_keylen_cipher(blowfish, BLOWFISH, cfb64,  CFB, BF_FLAGS, 64, 8, 64, stream)