/src/openssl/providers/implementations/ciphers/cipher_idea.c
Line | Count | Source (jump to first uncovered line) |
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 | | * IDEA low level APIs are deprecated for public use, but still ok for internal |
12 | | * use where we're using them to implement the higher level EVP interface, as is |
13 | | * the case here. |
14 | | */ |
15 | | #include "internal/deprecated.h" |
16 | | |
17 | | /* Dispatch functions for Idea cipher modes ecb, cbc, ofb, cfb */ |
18 | | |
19 | | #include "cipher_idea.h" |
20 | | #include "prov/implementations.h" |
21 | | #include "prov/providercommon.h" |
22 | | |
23 | | static OSSL_FUNC_cipher_freectx_fn idea_freectx; |
24 | | static OSSL_FUNC_cipher_dupctx_fn idea_dupctx; |
25 | | |
26 | | static void idea_freectx(void *vctx) |
27 | 0 | { |
28 | 0 | PROV_IDEA_CTX *ctx = (PROV_IDEA_CTX *)vctx; |
29 | |
|
30 | 0 | ossl_cipher_generic_reset_ctx((PROV_CIPHER_CTX *)vctx); |
31 | 0 | OPENSSL_clear_free(ctx, sizeof(*ctx)); |
32 | 0 | } |
33 | | |
34 | | static void *idea_dupctx(void *ctx) |
35 | 0 | { |
36 | 0 | PROV_IDEA_CTX *in = (PROV_IDEA_CTX *)ctx; |
37 | 0 | PROV_IDEA_CTX *ret; |
38 | |
|
39 | 0 | if (!ossl_prov_is_running()) |
40 | 0 | return NULL; |
41 | | |
42 | 0 | ret = OPENSSL_malloc(sizeof(*ret)); |
43 | 0 | if (ret == NULL) |
44 | 0 | return NULL; |
45 | 0 | *ret = *in; |
46 | |
|
47 | 0 | return ret; |
48 | 0 | } |
49 | | |
50 | | /* ossl_idea128ecb_functions */ |
51 | | IMPLEMENT_generic_cipher(idea, IDEA, ecb, ECB, 0, 128, 64, 0, block) |
52 | | /* ossl_idea128cbc_functions */ |
53 | | IMPLEMENT_generic_cipher(idea, IDEA, cbc, CBC, 0, 128, 64, 64, block) |
54 | | /* ossl_idea128ofb64_functions */ |
55 | | IMPLEMENT_generic_cipher(idea, IDEA, ofb64, OFB, 0, 128, 8, 64, stream) |
56 | | /* ossl_idea128cfb64_functions */ |
57 | | IMPLEMENT_generic_cipher(idea, IDEA, cfb64, CFB, 0, 128, 8, 64, stream) |