]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/default/defltprov.c
Implement AES OFB ciphers in the default provider
[thirdparty/openssl.git] / providers / default / defltprov.c
CommitLineData
8a73348b
MC
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>
861b8f87 16#include "internal/provider_algs.h"
8a73348b
MC
17
18/* Functions provided by the core */
19static OSSL_core_get_param_types_fn *c_get_param_types = NULL;
20static OSSL_core_get_params_fn *c_get_params = NULL;
21
22/* Parameters we provide to the core */
23static 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
30static const OSSL_ITEM *deflt_get_param_types(const OSSL_PROVIDER *prov)
31{
32 return deflt_param_types;
33}
34
35static 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
de29ff17
MC
53static const OSSL_ALGORITHM deflt_digests[] = {
54 { "SHA256", "default=yes", sha256_functions },
55 { NULL, NULL, NULL }
56};
57
aab26e6f
MC
58static const OSSL_ALGORITHM deflt_ciphers[] = {
59 { "AES-256-ECB", "default=yes", aes256ecb_functions },
f4a129bb
MC
60 { "AES-192-ECB", "default=yes", aes192ecb_functions },
61 { "AES-128-ECB", "default=yes", aes128ecb_functions },
718b133a
MC
62 { "AES-256-CBC", "default=yes", aes256cbc_functions },
63 { "AES-192-CBC", "default=yes", aes192cbc_functions },
64 { "AES-128-CBC", "default=yes", aes128cbc_functions },
ed98df51
MC
65 { "AES-256-OFB", "default=yes", aes256ofb_functions },
66 { "AES-192-OFB", "default=yes", aes192ofb_functions },
67 { "AES-128-OFB", "default=yes", aes128ofb_functions },
aab26e6f
MC
68 { NULL, NULL, NULL }
69};
70
de29ff17
MC
71static 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;
aab26e6f
MC
79 case OSSL_OP_CIPHER:
80 return deflt_ciphers;
de29ff17
MC
81 }
82 return NULL;
83}
84
8a73348b
MC
85/* Functions we provide to the core */
86static 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 },
de29ff17 89 { OSSL_FUNC_PROVIDER_QUERY_OPERATION, (void (*)(void))deflt_query },
8a73348b
MC
90 { 0, NULL }
91};
92
93OSSL_provider_init_fn ossl_default_provider_init;
94
95int 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}