diff options
author | Ben Laurie <ben@openssl.org> | 2008-11-01 17:40:37 +0100 |
---|---|---|
committer | Ben Laurie <ben@openssl.org> | 2008-11-01 17:40:37 +0100 |
commit | 5e4430e70df0020f5f1517249851696cb9ac4ad2 (patch) | |
tree | 95dcbc73bcd99b725664324db882b4a388d0d4cb /crypto/evp/evp_key.c | |
parent | size_tification. (diff) | |
download | openssl-5e4430e70df0020f5f1517249851696cb9ac4ad2.tar.xz openssl-5e4430e70df0020f5f1517249851696cb9ac4ad2.zip |
More size_tification.
Diffstat (limited to 'crypto/evp/evp_key.c')
-rw-r--r-- | crypto/evp/evp_key.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/evp_key.c b/crypto/evp/evp_key.c index 361ea69ab6..898ff6f1e5 100644 --- a/crypto/evp/evp_key.c +++ b/crypto/evp/evp_key.c @@ -108,7 +108,7 @@ int EVP_read_pw_string(char *buf, int len, const char *prompt, int verify) } int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md, - const unsigned char *salt, const unsigned char *data, int datal, + const unsigned char *salt, const unsigned char *data, size_t datal, int count, unsigned char *key, unsigned char *iv) { EVP_MD_CTX c; |