Update all header guards.
[tinc] / src / openssl / rsa.c
1 /*
2     rsa.c -- RSA key handling
3     Copyright (C) 2007-2013 Guus Sliepen <guus@tinc-vpn.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "../system.h"
21
22 #include <openssl/pem.h>
23 #include <openssl/err.h>
24
25 #define TINC_RSA_INTERNAL
26 typedef RSA rsa_t;
27
28 #include "../logger.h"
29 #include "../rsa.h"
30
31 // Set RSA keys
32
33 #ifndef HAVE_RSA_SET0_KEY
34 int RSA_set0_key(RSA *r, BIGNUM *n, BIGNUM *e, BIGNUM *d) {
35         BN_free(r->n); r->n = n;
36         BN_free(r->e); r->e = e;
37         BN_free(r->d); r->d = d;
38         return 1;
39 }
40 #endif
41
42 rsa_t *rsa_set_hex_public_key(char *n, char *e) {
43         BIGNUM *bn_n = NULL;
44         BIGNUM *bn_e = NULL;
45
46         if(BN_hex2bn(&bn_n, n) != strlen(n) || BN_hex2bn(&bn_e, e) != strlen(e)) {
47                 BN_free(bn_e);
48                 BN_free(bn_n);
49                 return false;
50         }
51
52         rsa_t *rsa = RSA_new();
53         if(!rsa)
54                 return NULL;
55         
56         RSA_set0_key(rsa, bn_n, bn_e, NULL);
57
58         return rsa;
59 }
60
61 rsa_t *rsa_set_hex_private_key(char *n, char *e, char *d) {
62         BIGNUM *bn_n = NULL;
63         BIGNUM *bn_e = NULL;
64         BIGNUM *bn_d = NULL;
65
66         if(BN_hex2bn(&bn_n, n) != strlen(n) || BN_hex2bn(&bn_e, e) != strlen(e) || BN_hex2bn(&bn_d, d) != strlen(d)) {
67                 BN_free(bn_d);
68                 BN_free(bn_e);
69                 BN_free(bn_n);
70                 return false;
71         }
72
73         rsa_t *rsa = RSA_new();
74         if(!rsa)
75                 return NULL;
76
77         RSA_set0_key(rsa, bn_n, bn_e, bn_d);
78
79         return rsa;
80 }
81
82 // Read PEM RSA keys
83
84 rsa_t *rsa_read_pem_public_key(FILE *fp) {
85         rsa_t *rsa = PEM_read_RSAPublicKey(fp, NULL, NULL, NULL);
86
87         if(!rsa) {
88                 rewind(fp);
89                 rsa = PEM_read_RSA_PUBKEY(fp, NULL, NULL, NULL);
90         }
91
92         if(!rsa)
93                 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to read RSA public key: %s", ERR_error_string(ERR_get_error(), NULL));
94
95         return rsa;
96 }
97
98 rsa_t *rsa_read_pem_private_key(FILE *fp) {
99         rsa_t *rsa = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
100
101         if(!rsa)
102                 logger(DEBUG_ALWAYS, LOG_ERR, "Unable to read RSA private key: %s", ERR_error_string(ERR_get_error(), NULL));
103
104         return rsa;
105 }
106
107 size_t rsa_size(rsa_t *rsa) {
108         return RSA_size(rsa);
109 }
110
111 bool rsa_public_encrypt(rsa_t *rsa, void *in, size_t len, void *out) {
112         if(RSA_public_encrypt(len, in, out, rsa, RSA_NO_PADDING) == len)
113                 return true;
114
115         logger(DEBUG_ALWAYS, LOG_ERR, "Unable to perform RSA encryption: %s", ERR_error_string(ERR_get_error(), NULL));
116         return false;
117 }
118
119 bool rsa_private_decrypt(rsa_t *rsa, void *in, size_t len, void *out) {
120         if(RSA_private_decrypt(len, in, out, rsa, RSA_NO_PADDING) == len)
121                 return true;
122
123         logger(DEBUG_ALWAYS, LOG_ERR, "Unable to perform RSA decryption: %s", ERR_error_string(ERR_get_error(), NULL));
124         return false;
125 }
126
127 bool rsa_active(rsa_t *rsa) {
128         return rsa;
129 }
130
131 void rsa_free(rsa_t *rsa) {
132         if(rsa)
133                 RSA_free(rsa);
134 }