From 92242efeec6fd187fbbe4701c0dc33975c137d2e Mon Sep 17 00:00:00 2001 From: Eugene Crosser Date: Thu, 31 Oct 2013 15:08:29 +0400 Subject: [PATCH] fix args order --- ossl_crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ossl_crypto.c b/ossl_crypto.c index 79a80ef..51594d3 100644 --- a/ossl_crypto.c +++ b/ossl_crypto.c @@ -47,7 +47,7 @@ static unsigned long ossl_hash(void *pt, int tlen, void *tag, int *taglen) return 0UL; } -static unsigned long ossl_hmac(void *pt, int tlen, void *key, int keylen, +static unsigned long ossl_hmac(void *key, int keylen, void *pt, int tlen, void *tag, int *taglen) { #if 1 -- 2.39.2