Implement AES OFB ciphers in the default provider
[openssl.git] / providers / default / defltprov.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 #include <string.h>
11 #include <stdio.h>
12 #include <openssl/core.h>
13 #include <openssl/core_numbers.h>
14 #include <openssl/core_names.h>
15 #include <openssl/params.h>
16 #include "internal/provider_algs.h"
17
18 /* Functions provided by the core */
19 static OSSL_core_get_param_types_fn *c_get_param_types = NULL;
20 static OSSL_core_get_params_fn *c_get_params = NULL;
21
22 /* Parameters we provide to the core */
23 static const OSSL_ITEM deflt_param_types[] = {
24     { OSSL_PARAM_UTF8_PTR, OSSL_PROV_PARAM_NAME },
25     { OSSL_PARAM_UTF8_PTR, OSSL_PROV_PARAM_VERSION },
26     { OSSL_PARAM_UTF8_PTR, OSSL_PROV_PARAM_BUILDINFO },
27     { 0, NULL }
28 };
29
30 static const OSSL_ITEM *deflt_get_param_types(const OSSL_PROVIDER *prov)
31 {
32     return deflt_param_types;
33 }
34
35 static int deflt_get_params(const OSSL_PROVIDER *prov,
36                             const OSSL_PARAM params[])
37 {
38     const OSSL_PARAM *p;
39
40     p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_NAME);
41     if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, "OpenSSL Default Provider"))
42         return 0;
43     p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_VERSION);
44     if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, OPENSSL_VERSION_STR))
45         return 0;
46     p = OSSL_PARAM_locate(params, OSSL_PROV_PARAM_BUILDINFO);
47     if (p != NULL && !OSSL_PARAM_set_utf8_ptr(p, OPENSSL_FULL_VERSION_STR))
48         return 0;
49
50     return 1;
51 }
52
53 static const OSSL_ALGORITHM deflt_digests[] = {
54     { "SHA256", "default=yes", sha256_functions },
55     { NULL, NULL, NULL }
56 };
57
58 static const OSSL_ALGORITHM deflt_ciphers[] = {
59     { "AES-256-ECB", "default=yes", aes256ecb_functions },
60     { "AES-192-ECB", "default=yes", aes192ecb_functions },
61     { "AES-128-ECB", "default=yes", aes128ecb_functions },
62     { "AES-256-CBC", "default=yes", aes256cbc_functions },
63     { "AES-192-CBC", "default=yes", aes192cbc_functions },
64     { "AES-128-CBC", "default=yes", aes128cbc_functions },
65     { "AES-256-OFB", "default=yes", aes256ofb_functions },
66     { "AES-192-OFB", "default=yes", aes192ofb_functions },
67     { "AES-128-OFB", "default=yes", aes128ofb_functions },
68     { NULL, NULL, NULL }
69 };
70
71 static const OSSL_ALGORITHM *deflt_query(OSSL_PROVIDER *prov,
72                                          int operation_id,
73                                          int *no_cache)
74 {
75     *no_cache = 0;
76     switch (operation_id) {
77     case OSSL_OP_DIGEST:
78         return deflt_digests;
79     case OSSL_OP_CIPHER:
80         return deflt_ciphers;
81     }
82     return NULL;
83 }
84
85 /* Functions we provide to the core */
86 static const OSSL_DISPATCH deflt_dispatch_table[] = {
87     { OSSL_FUNC_PROVIDER_GET_PARAM_TYPES, (void (*)(void))deflt_get_param_types },
88     { OSSL_FUNC_PROVIDER_GET_PARAMS, (void (*)(void))deflt_get_params },
89     { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))deflt_query },
90     { 0, NULL }
91 };
92
93 OSSL_provider_init_fn ossl_default_provider_init;
94
95 int ossl_default_provider_init(const OSSL_PROVIDER *provider,
96                                const OSSL_DISPATCH *in,
97                                const OSSL_DISPATCH **out)
98 {
99     for (; in->function_id != 0; in++) {
100         switch (in->function_id) {
101         case OSSL_FUNC_CORE_GET_PARAM_TYPES:
102             c_get_param_types = OSSL_get_core_get_param_types(in);
103             break;
104         case OSSL_FUNC_CORE_GET_PARAMS:
105             c_get_params = OSSL_get_core_get_params(in);
106             break;
107         default:
108             /* Just ignore anything we don't understand */
109             break;
110         }
111     }
112
113     *out = deflt_dispatch_table;
114     return 1;
115 }