Make EVP_CIPHER opaque and add creator/destructor/accessor/writer functions
[openssl.git] / crypto / evp / cmeth_lib.c
1 /* cmeth_lib.c */
2 /*
3  * Written by Richard Levitte (levitte@openssl.org) for the OpenSSL project
4  * 2015.
5  */
6 /* ====================================================================
7  * Copyright (c) 2015 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in
18  *    the documentation and/or other materials provided with the
19  *    distribution.
20  *
21  * 3. All advertising materials mentioning features or use of this
22  *    software must display the following acknowledgment:
23  *    "This product includes software developed by the OpenSSL Project
24  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
25  *
26  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27  *    endorse or promote products derived from this software without
28  *    prior written permission. For written permission, please contact
29  *    licensing@OpenSSL.org.
30  *
31  * 5. Products derived from this software may not be called "OpenSSL"
32  *    nor may "OpenSSL" appear in their names without prior written
33  *    permission of the OpenSSL Project.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
40  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
44  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51  * OF THE POSSIBILITY OF SUCH DAMAGE.
52  * ====================================================================
53  *
54  * This product includes cryptographic software written by Eric Young
55  * (eay@cryptsoft.com).  This product includes software written by Tim
56  * Hudson (tjh@cryptsoft.com).
57  *
58  */
59
60 #include <string.h>
61
62 #include <openssl/evp.h>
63 #include "internal/evp_int.h"
64 #include "evp_locl.h"
65
66 EVP_CIPHER *EVP_CIPHER_meth_new(int cipher_type, int block_size, int key_len)
67 {
68     EVP_CIPHER *cipher = (EVP_CIPHER *)OPENSSL_zalloc(sizeof(EVP_CIPHER));
69     if (cipher != NULL) {
70         cipher->nid = cipher_type;
71         cipher->block_size = block_size;
72         cipher->key_len = key_len;
73     }
74     return cipher;
75 }
76
77 EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher)
78 {
79     EVP_CIPHER *to = EVP_CIPHER_meth_new(cipher->nid, cipher->block_size,
80                                          cipher->key_len);
81     if (cipher != NULL)
82         memcpy(to, cipher, sizeof(*to));
83     return to;
84 }
85
86 void EVP_CIPHER_meth_free(EVP_CIPHER *cipher)
87 {
88     OPENSSL_free(cipher);
89 }
90
91 int EVP_CIPHER_meth_set_iv_length(EVP_CIPHER *cipher, int iv_len)
92 {
93     cipher->iv_len = iv_len;
94     return 1;
95 }
96
97 int EVP_CIPHER_meth_set_flags(EVP_CIPHER *cipher, unsigned long flags)
98 {
99     cipher->flags = flags;
100     return 1;
101 }
102
103 int EVP_CIPHER_meth_set_impl_ctx_size(EVP_CIPHER *cipher, int ctx_size)
104 {
105     cipher->ctx_size = ctx_size;
106     return 1;
107 }
108
109 int EVP_CIPHER_meth_set_init(EVP_CIPHER *cipher,
110                              int (*init) (EVP_CIPHER_CTX *ctx,
111                                           const unsigned char *key,
112                                           const unsigned char *iv,
113                                           int enc))
114 {
115     cipher->init = init;
116     return 1;
117 }
118
119 int EVP_CIPHER_meth_set_do_cipher(EVP_CIPHER *cipher,
120                                   int (*do_cipher) (EVP_CIPHER_CTX *ctx,
121                                                     unsigned char *out,
122                                                     const unsigned char *in,
123                                                     size_t inl))
124 {
125     cipher->do_cipher = do_cipher;
126     return 1;
127 }
128
129 int EVP_CIPHER_meth_set_cleanup(EVP_CIPHER *cipher,
130                                 int (*cleanup) (EVP_CIPHER_CTX *))
131 {
132     cipher->cleanup = cleanup;
133     return 1;
134 }
135
136 int EVP_CIPHER_meth_set_set_asn1_params(EVP_CIPHER *cipher,
137                                         int (*set_asn1_parameters) (EVP_CIPHER_CTX *,
138                                                                     ASN1_TYPE *))
139 {
140     cipher->set_asn1_parameters = set_asn1_parameters;
141     return 1;
142 }
143
144 int EVP_CIPHER_meth_set_get_asn1_params(EVP_CIPHER *cipher,
145                                         int (*get_asn1_parameters) (EVP_CIPHER_CTX *,
146                                                                     ASN1_TYPE *))
147 {
148     cipher->get_asn1_parameters = get_asn1_parameters;
149     return 1;
150 }
151
152 int EVP_CIPHER_meth_set_ctrl(EVP_CIPHER *cipher,
153                              int (*ctrl) (EVP_CIPHER_CTX *, int type,
154                                           int arg, void *ptr))
155 {
156     cipher->ctrl = ctrl;
157     return 1;
158 }
159
160
161 int (*EVP_CIPHER_meth_get_init(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *ctx,
162                                                           const unsigned char *key,
163                                                           const unsigned char *iv,
164                                                           int enc)
165 {
166     return cipher->init;
167 }
168 int (*EVP_CIPHER_meth_get_do_cipher(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *ctx,
169                                                                unsigned char *out,
170                                                                const unsigned char *in,
171                                                                size_t inl)
172 {
173     return cipher->do_cipher;
174 }
175
176 int (*EVP_CIPHER_meth_get_cleanup(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *)
177 {
178     return cipher->cleanup;
179 }
180
181 int (*EVP_CIPHER_meth_get_set_asn1_params(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *,
182                                                                      ASN1_TYPE *)
183 {
184     return cipher->set_asn1_parameters;
185 }
186
187 int (*EVP_CIPHER_meth_get_get_asn1_params(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *,
188                                                                ASN1_TYPE *)
189 {
190     return cipher->get_asn1_parameters;
191 }
192
193 int (*EVP_CIPHER_meth_get_ctrl(const EVP_CIPHER *cipher))(EVP_CIPHER_CTX *,
194                                                           int type, int arg,
195                                                           void *ptr)
196 {
197     return cipher->ctrl;
198 }
199