2 rsa.c -- RSA key handling
3 Copyright (C) 2007 Guus Sliepen <guus@tinc-vpn.org>
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.
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.
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.
22 #include <openssl/pem.h>
23 #include <openssl/err.h>
30 bool rsa_set_hex_public_key(rsa_t *rsa, char *n, char *e) {
32 BN_hex2bn(&(*rsa)->n, n);
33 BN_hex2bn(&(*rsa)->e, e);
37 bool rsa_set_hex_private_key(rsa_t *rsa, char *n, char *e, char *d) {
39 BN_hex2bn(&(*rsa)->n, n);
40 BN_hex2bn(&(*rsa)->e, e);
41 BN_hex2bn(&(*rsa)->d, d);
47 bool rsa_read_pem_public_key(rsa_t *rsa, FILE *fp) {
48 *rsa = PEM_read_RSAPublicKey(fp, rsa, NULL, NULL);
53 *rsa = PEM_read_RSA_PUBKEY(fp, rsa, NULL, NULL);
58 logger(LOG_ERR, "Unable to read RSA public key: %s", ERR_error_string(ERR_get_error(), NULL));
62 bool rsa_read_pem_private_key(rsa_t *rsa, FILE *fp) {
63 *rsa = PEM_read_RSAPrivateKey(fp, NULL, NULL, NULL);
68 logger(LOG_ERR, "Unable to read RSA private key: %s", ERR_error_string(ERR_get_error(), NULL));
72 size_t rsa_size(rsa_t *rsa) {
73 return RSA_size(*rsa);
76 bool rsa_public_encrypt(rsa_t *rsa, void *in, size_t len, void *out) {
77 if(RSA_public_encrypt(len, in, out, *rsa, RSA_NO_PADDING) == len)
80 logger(LOG_ERR, "Unable to perform RSA encryption: %s", ERR_error_string(ERR_get_error(), NULL));
84 bool rsa_private_decrypt(rsa_t *rsa, void *in, size_t len, void *out) {
85 if(RSA_private_decrypt(len, in, out, *rsa, RSA_NO_PADDING) == len)
88 logger(LOG_ERR, "Unable to perform RSA decryption: %s", ERR_error_string(ERR_get_error(), NULL));