From b444ac3e6f04aec13aa0c19983291b0326feb7f9 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Fri, 31 Oct 2008 19:48:25 +0000 Subject: size_t-fy EVP_CIPHER. Note that being size_t-fied it doesn't require underlying cipher to be size_t-fied, it allows for size_t, signed and unsigned long. It maintains source and even binary compatibility. --- crypto/evp/e_null.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crypto/evp/e_null.c') diff --git a/crypto/evp/e_null.c b/crypto/evp/e_null.c index 5205259f18..7cf50e1416 100644 --- a/crypto/evp/e_null.c +++ b/crypto/evp/e_null.c @@ -64,7 +64,7 @@ static int null_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, const unsigned char *iv,int enc); static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, - const unsigned char *in, unsigned int inl); + const unsigned char *in, size_t inl); static const EVP_CIPHER n_cipher= { NID_undef, @@ -93,10 +93,10 @@ static int null_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, } static int null_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out, - const unsigned char *in, unsigned int inl) + const unsigned char *in, size_t inl) { if (in != out) - memcpy((char *)out,(const char *)in,(size_t)inl); + memcpy((char *)out,(const char *)in,inl); return 1; } -- cgit v1.2.3