summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/rsa/rsa_meth.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/rsa/rsa_meth.c')
-rw-r--r--src/lib/libcrypto/rsa/rsa_meth.c86
1 files changed, 86 insertions, 0 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_meth.c b/src/lib/libcrypto/rsa/rsa_meth.c
new file mode 100644
index 0000000000..0e52799a38
--- /dev/null
+++ b/src/lib/libcrypto/rsa/rsa_meth.c
@@ -0,0 +1,86 @@
1/* $OpenBSD: rsa_meth.c,v 1.1 2018/03/17 15:12:56 tb Exp $ */
2/*
3 * Copyright (c) 2018 Theo Buehler <tb@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#include <stdlib.h>
19#include <string.h>
20
21#include <openssl/err.h>
22#include <openssl/rsa.h>
23
24RSA_METHOD *
25RSA_meth_new(const char *name, int flags)
26{
27 RSA_METHOD *meth;
28
29 if ((meth = calloc(1, sizeof(*meth))) == NULL)
30 return NULL;
31 if ((meth->name = strdup(name)) == NULL) {
32 free(meth);
33 return NULL;
34 }
35 meth->flags = flags;
36
37 return meth;
38}
39
40void
41RSA_meth_free(RSA_METHOD *meth)
42{
43 if (meth != NULL) {
44 free((char *)meth->name);
45 free(meth);
46 }
47}
48
49RSA_METHOD *
50RSA_meth_dup(const RSA_METHOD *meth)
51{
52 RSA_METHOD *copy;
53
54 if ((copy = calloc(1, sizeof(*copy))) == NULL)
55 return NULL;
56 memcpy(copy, meth, sizeof(*copy));
57 if ((copy->name = strdup(meth->name)) == NULL) {
58 free(copy);
59 return NULL;
60 }
61
62 return copy;
63}
64
65int
66RSA_meth_set_priv_enc(RSA_METHOD *meth, int (*priv_enc)(int flen,
67 const unsigned char *from, unsigned char *to, RSA *rsa, int padding))
68{
69 meth->rsa_priv_enc = priv_enc;
70 return 1;
71}
72
73int
74RSA_meth_set_priv_dec(RSA_METHOD *meth, int (*priv_dec)(int flen,
75 const unsigned char *from, unsigned char *to, RSA *rsa, int padding))
76{
77 meth->rsa_priv_dec = priv_dec;
78 return 1;
79}
80
81int
82RSA_meth_set_finish(RSA_METHOD *meth, int (*finish)(RSA *rsa))
83{
84 meth->finish = finish;
85 return 1;
86}