New function read_rsa_public_key();

In net.c/setup_myself deleted old code to read the public key (which
is now implicitly read in together with the private key).
This commit is contained in:
Ivo Timmermans 2000-11-30 23:18:21 +00:00
parent 28deaeac14
commit a0f7af3ed7
3 changed files with 38 additions and 16 deletions

View file

@ -17,7 +17,7 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: net.c,v 1.35.4.85 2000/11/30 22:48:48 zarq Exp $ $Id: net.c,v 1.35.4.86 2000/11/30 23:18:19 zarq Exp $
*/ */
#include "config.h" #include "config.h"
@ -698,20 +698,40 @@ cp
return 0; return 0;
} }
int read_rsa_public_key(RSA **key, const char *file)
{
FILE *fp;
if((fp = fopen(file, "r")) == NULL)
{
syslog(LOG_ERR, _("Error reading RSA public key file `%s': %m"),
file);
return -1;
}
if(PEM_read_RSAPublicKey(fp, key, NULL, NULL) == NULL)
{
syslog(LOG_ERR, _("Reading RSA private key file `%s' failed: %m"),
file);
return -1;
}
return 0;
}
int read_rsa_private_key(RSA **key, const char *file) int read_rsa_private_key(RSA **key, const char *file)
{ {
FILE *fp; FILE *fp;
if((fp = fopen(file, "r")) == NULL) if((fp = fopen(file, "r")) == NULL)
{ {
syslog(LOG_ERR, _("Error reading RSA key file `%s': %m"), syslog(LOG_ERR, _("Error reading RSA private key file `%s': %m"),
file); file);
return -1; return -1;
} }
if(PEM_read_RSAPrivateKey(fp, key, NULL, NULL) == NULL) if(PEM_read_RSAPrivateKey(fp, key, NULL, NULL) == NULL)
{ {
syslog(LOG_ERR, _("Reading RSA private key file `%s' failed: %m"), syslog(LOG_ERR, _("Reading RSA private key file `%s' failed: %m"),
cfg->data.ptr); file);
return -1; return -1;
} }
@ -771,15 +791,7 @@ cp
return -1; return -1;
} }
cp cp
if(!(cfg = get_config_val(myself->config, config_publickey)))
{
syslog(LOG_ERR, _("Public key for tinc daemon required!"));
return -1;
}
else
{
BN_hex2bn(&myself->rsa_key->n, cfg->data.ptr);
}
/* /*
if(RSA_check_key(myself->rsa_key) != 1) if(RSA_check_key(myself->rsa_key) != 1)
{ {

View file

@ -16,7 +16,7 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: net.h,v 1.9.4.22 2000/11/20 19:12:13 guus Exp $ $Id: net.h,v 1.9.4.23 2000/11/30 23:18:21 zarq Exp $
*/ */
#ifndef __TINC_NET_H__ #ifndef __TINC_NET_H__
@ -120,4 +120,14 @@ extern void terminate_connection(connection_t *);
extern void flush_queues(connection_t *); extern void flush_queues(connection_t *);
extern void add_queue(packet_queue_t **, void *, size_t); extern void add_queue(packet_queue_t **, void *, size_t);
#include <config.h>
#ifdef HAVE_OPENSSL_RSA_H
# include <openssl/rsa.h>
#else
# include <rsa.h>
#endif
extern int read_rsa_public_key(RSA **, const char *);
#endif /* __TINC_NET_H__ */ #endif /* __TINC_NET_H__ */

View file

@ -17,7 +17,7 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: protocol.c,v 1.28.4.67 2000/11/25 13:33:33 guus Exp $ $Id: protocol.c,v 1.28.4.68 2000/11/30 23:18:21 zarq Exp $
*/ */
#include "config.h" #include "config.h"
@ -255,8 +255,8 @@ cp
if((cfg = get_config_val(cl->config, config_publickey))) if((cfg = get_config_val(cl->config, config_publickey)))
{ {
cl->rsa_key = RSA_new(); cl->rsa_key = RSA_new();
BN_hex2bn(&cl->rsa_key->n, cfg->data.ptr); if(read_rsa_public_key(&(cl->rsa_key), cfg->data.ptr) < 0)
BN_hex2bn(&cl->rsa_key->e, "FFFF"); return -1;
} }
else else
{ {