diff options
Diffstat (limited to 'src/Common')
-rw-r--r-- | src/Common/Pkcs5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Common/Pkcs5.c b/src/Common/Pkcs5.c index ea0a9874..ef263db7 100644 --- a/src/Common/Pkcs5.c +++ b/src/Common/Pkcs5.c @@ -401,7 +401,7 @@ typedef struct hmac_ripemd160_ctx_struct void hmac_ripemd160_internal (char *key, int keylen, char *input_digest, int len, hmac_ripemd160_ctx* hmac)
{
RMD160_CTX* context = &(hmac->context);
- unsigned char* k_pad = hmac->k_pad; /* inner/outer padding - key XORd with ipad */
+ unsigned char* k_pad = (unsigned char*) hmac->k_pad; /* inner/outer padding - key XORd with ipad */
int i;
/*
|