diff options
author | Ulf Möller <ulf@openssl.org> | 1999-04-19 21:31:43 +0000 |
---|---|---|
committer | Ulf Möller <ulf@openssl.org> | 1999-04-19 21:31:43 +0000 |
commit | 6b691a5c85ddc4e407e32781841fee5c029506cd (patch) | |
tree | 436f1127406e1cacfe83dfcbfff824d89c47d834 /crypto/evp/evp_pbe.c | |
parent | 3edd7ed15de229230f74c79c3d71e7c9c674cf4f (diff) | |
download | openssl-new-6b691a5c85ddc4e407e32781841fee5c029506cd.tar.gz |
Change functions to ANSI C.
Diffstat (limited to 'crypto/evp/evp_pbe.c')
-rw-r--r-- | crypto/evp/evp_pbe.c | 29 |
1 files changed, 9 insertions, 20 deletions
diff --git a/crypto/evp/evp_pbe.c b/crypto/evp/evp_pbe.c index a905573dec..1418921a04 100644 --- a/crypto/evp/evp_pbe.c +++ b/crypto/evp/evp_pbe.c @@ -74,12 +74,9 @@ EVP_MD *md; EVP_PBE_KEYGEN *keygen; } EVP_PBE_CTL; -int EVP_PBE_CipherInit (pbe_obj, pass, passlen, salt, saltlen, iter, ctx, en_de) -ASN1_OBJECT *pbe_obj; -int passlen, saltlen, iter; -unsigned char *pass, *salt; -EVP_CIPHER_CTX *ctx; -int en_de; +int EVP_PBE_CipherInit (ASN1_OBJECT *pbe_obj, unsigned char *pass, int passlen, + unsigned char *salt, int saltlen, int iter, EVP_CIPHER_CTX *ctx, + int en_de) { EVP_PBE_CTL *pbetmp, pbelu; @@ -112,12 +109,8 @@ int en_de; /* Setup a PBE algorithm but take most parameters from AlgorithmIdentifier */ -int EVP_PBE_ALGOR_CipherInit (algor, pass, passlen, ctx, en_de) -X509_ALGOR *algor; -unsigned char *pass; -int passlen; -EVP_CIPHER_CTX *ctx; -int en_de; +int EVP_PBE_ALGOR_CipherInit (X509_ALGOR *algor, unsigned char *pass, + int passlen, EVP_CIPHER_CTX *ctx, int en_de) { PBEPARAM *pbe; int saltlen, iter; @@ -147,19 +140,15 @@ int en_de; } -static int pbe_cmp (pbe1, pbe2) -EVP_PBE_CTL **pbe1, **pbe2; +static int pbe_cmp (EVP_PBE_CTL **pbe1, EVP_PBE_CTL **pbe2) { return ((*pbe1)->pbe_nid - (*pbe2)->pbe_nid); } /* Add a PBE algorithm */ -int EVP_PBE_alg_add (nid, cipher, md, keygen) -int nid; -EVP_CIPHER *cipher; -EVP_MD *md; -EVP_PBE_KEYGEN *keygen; +int EVP_PBE_alg_add (int nid, EVP_CIPHER *cipher, EVP_MD *md, + EVP_PBE_KEYGEN *keygen) { EVP_PBE_CTL *pbe_tmp; if (!pbe_algs) pbe_algs = sk_new (pbe_cmp); @@ -175,7 +164,7 @@ EVP_PBE_KEYGEN *keygen; return 1; } -void EVP_PBE_cleanup() +void EVP_PBE_cleanup(void) { sk_pop_free(pbe_algs, FreeFunc); } |