along with this program; if not, write to the Free Software
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"
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)
{
FILE *fp;
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);
return -1;
}
if(PEM_read_RSAPrivateKey(fp, key, NULL, NULL) == NULL)
{
syslog(LOG_ERR, _("Reading RSA private key file `%s' failed: %m"),
- cfg->data.ptr);
+ file);
return -1;
}
return -1;
}
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)
{
along with this program; if not, write to the Free Software
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__
extern void flush_queues(connection_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__ */
along with this program; if not, write to the Free Software
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"
if((cfg = get_config_val(cl->config, config_publickey)))
{
cl->rsa_key = RSA_new();
- BN_hex2bn(&cl->rsa_key->n, cfg->data.ptr);
- BN_hex2bn(&cl->rsa_key->e, "FFFF");
+ if(read_rsa_public_key(&(cl->rsa_key), cfg->data.ptr) < 0)
+ return -1;
}
else
{