summaryrefslogtreecommitdiffstats
path: root/crypto/evp/p_dec.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-19 21:31:43 +0000
committerUlf Möller <ulf@openssl.org>1999-04-19 21:31:43 +0000
commit6b691a5c85ddc4e407e32781841fee5c029506cd (patch)
tree436f1127406e1cacfe83dfcbfff824d89c47d834 /crypto/evp/p_dec.c
parent3edd7ed15de229230f74c79c3d71e7c9c674cf4f (diff)
Change functions to ANSI C.
Diffstat (limited to 'crypto/evp/p_dec.c')
-rw-r--r--crypto/evp/p_dec.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/crypto/evp/p_dec.c b/crypto/evp/p_dec.c
index fca333d78a..0533a84907 100644
--- a/crypto/evp/p_dec.c
+++ b/crypto/evp/p_dec.c
@@ -66,11 +66,8 @@
#include "objects.h"
#include "x509.h"
-int EVP_PKEY_decrypt(key,ek,ekl,priv)
-unsigned char *key;
-unsigned char *ek;
-int ekl;
-EVP_PKEY *priv;
+int EVP_PKEY_decrypt(unsigned char *key, unsigned char *ek, int ekl,
+ EVP_PKEY *priv)
{
int ret= -1;