From cb7fd76f572c6535856e882a6e9225163a45d977 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 28 Sep 2001 01:48:34 +0000 Subject: Modernise and fix (ancient) "maurice" demos. --- demos/maurice/loadkeys.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'demos/maurice/loadkeys.c') diff --git a/demos/maurice/loadkeys.c b/demos/maurice/loadkeys.c index 0f34647..82fd22a 100644 --- a/demos/maurice/loadkeys.c +++ b/demos/maurice/loadkeys.c @@ -31,9 +31,7 @@ EVP_PKEY * ReadPublicKey(const char *certfile) if (!fp) return NULL; - x509 = (X509 *)PEM_ASN1_read ((char *(*)())d2i_X509, - PEM_STRING_X509, - fp, NULL, NULL); + x509 = PEM_read_X509(fp, NULL, 0, NULL); if (x509 == NULL) { @@ -61,10 +59,7 @@ EVP_PKEY *ReadPrivateKey(const char *keyfile) if (!fp) return NULL; - pkey = (EVP_PKEY*)PEM_ASN1_read ((char *(*)())d2i_PrivateKey, - PEM_STRING_EVP_PKEY, - fp, - NULL, NULL); + pkey = PEM_read_PrivateKey(fp, NULL, 0, NULL); fclose (fp); -- cgit v1.1