summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2009-11-13 04:29:07 +0000
committerStef Walter <stef@memberwebs.com>2009-11-13 04:29:07 +0000
commitc8debab8f103fdf89aa5760bf135fed5aad3b6db (patch)
tree087111ef16bede603c86dfc90651ae5ffdcc63af
parent58edc20b2fcbf24d1ad484a9a6a22d2450f8ab7d (diff)
Fix compilation warning.
-rw-r--r--src/rsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rsa.c b/src/rsa.c
index e9ab05a..1b9286f 100644
--- a/src/rsa.c
+++ b/src/rsa.c
@@ -104,7 +104,7 @@ hash_for_rsa_pkcs_sign(int algo, int wrap, const CK_BYTE* data,
ASN1_OCTET_STRING digest;
EVP_MD_CTX ctx;
const EVP_MD* evp;
- size_t n_hash;
+ unsigned int n_hash;
int val;
if(algo == NID_md5_sha1)