Merge branch 'master' into 1.1
[tinc] / src / openssl / rsa.c
1 /*
2     rsa.c -- RSA key handling
3     Copyright (C) 2007 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 #include "logger.h"
26 #include "rsa.h"
27
28 // Set RSA keys
29
30 bool rsa_set_hex_public_key(rsa_t *rsa, char *n, char *e) {
31         *rsa = RSA_new();
32         if(BN_hex2bn(&(*rsa)->n, n) != strlen(n))
33                 return false;
34         if(BN_hex2bn(&(*rsa)->e, e) != strlen(e))
35                 return false;
36         return true;
37 }
38
39 bool rsa_set_hex_private_key(rsa_t *rsa, char *n, char *e, char *d) {
40         *rsa = RSA_new();
41         if(BN_hex2bn(&(*rsa)->n, n) != strlen(n))
42                 return false;
43         if(BN_hex2bn(&(*rsa)->e, e) != strlen(e))
44                 return false;
45         if(BN_hex2bn(&(*rsa)->d, d) != strlen(d))
46                 return false;
47         return true;
48 }
49
50 // Read PEM RSA keys
51
52 bool rsa_read_pem_public_key(rsa_t *rsa, FILE *fp) {
53         *rsa = PEM_read_RSAPublicKey(fp, rsa, NULL, NULL);
54
55         if(*rsa)
56                 return true;
57         
58         *rsa = PEM_read_RSA_PUBKEY(fp, rsa, NULL, NULL);
59
60         if(*rsa)
61                 return true;
62
63         logger(DEBUG_ALWAYS, LOG_ERR, "Unable to read RSA public key: %s", ERR_error_string(ERR_get_error(), NULL));
64         return false;
65 }
66
67 bool rsa_read_pem_private_key(rsa_t *rsa, FILE *fp) {
68         *rsa = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
69
70         if(*rsa)
71                 return true;
72         
73         logger(DEBUG_ALWAYS, LOG_ERR, "Unable to read RSA private key: %s", ERR_error_string(ERR_get_error(), NULL));
74         return false;
75 }
76
77 size_t rsa_size(rsa_t *rsa) {
78         return RSA_size(*rsa);
79 }
80
81 bool rsa_public_encrypt(rsa_t *rsa, void *in, size_t len, void *out) {
82         if(RSA_public_encrypt(len, in, out, *rsa, RSA_NO_PADDING) == len)
83                 return true;
84
85         logger(DEBUG_ALWAYS, LOG_ERR, "Unable to perform RSA encryption: %s", ERR_error_string(ERR_get_error(), NULL));
86         return false;   
87 }
88
89 bool rsa_private_decrypt(rsa_t *rsa, void *in, size_t len, void *out) {
90         if(RSA_private_decrypt(len, in, out, *rsa, RSA_NO_PADDING) == len)
91                 return true;
92
93         logger(DEBUG_ALWAYS, LOG_ERR, "Unable to perform RSA decryption: %s", ERR_error_string(ERR_get_error(), NULL));
94         return false;   
95 }
96
97 bool rsa_active(rsa_t *rsa) {
98         return *rsa;
99 }
100
101 void rsa_free(rsa_t *rsa) {
102         if(*rsa) {
103                 RSA_free(*rsa);
104                 *rsa = NULL;
105         }
106 }