summaryrefslogtreecommitdiff
path: root/beecrypt/hmac.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2003-04-29 08:15:16 +0000
committerjbj <devnull@localhost>2003-04-29 08:15:16 +0000
commita94207342d80a5ca6fc19e05de95ec346c937ccb (patch)
tree92edb18630a83bb403cd27c8dba2d580e218ccf1 /beecrypt/hmac.h
parentd4538f2d0da92317bbfeb37b1c7513350763b0f4 (diff)
downloadlibrpm-tizen-a94207342d80a5ca6fc19e05de95ec346c937ccb.tar.gz
librpm-tizen-a94207342d80a5ca6fc19e05de95ec346c937ccb.tar.bz2
librpm-tizen-a94207342d80a5ca6fc19e05de95ec346c937ccb.zip
beecrypt-3.0.0 merge: splint checks.
CVS patchset: 6787 CVS date: 2003/04/29 08:15:16
Diffstat (limited to 'beecrypt/hmac.h')
-rw-r--r--beecrypt/hmac.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/beecrypt/hmac.h b/beecrypt/hmac.h
index ed23ee62f..7e888e845 100644
--- a/beecrypt/hmac.h
+++ b/beecrypt/hmac.h
@@ -39,19 +39,19 @@ extern "C" {
*/
BEECRYPTAPI
int hmacSetup (byte* kxi, byte* kxo, const hashFunction* hash, hashFunctionParam* param, const byte* key, size_t keybits)
- /*@modifies kxi, kxo */;
+ /*@modifies kxi, kxo, param */;
/**
*/
BEECRYPTAPI
int hmacReset (const byte* kxi, const hashFunction* hash, hashFunctionParam* param)
- /*@modifies hp */;
+ /*@modifies param */;
/**
*/
BEECRYPTAPI
int hmacUpdate(const hashFunction* hash, hashFunctionParam* param, const byte* data, size_t size)
- /*@modifies hp */;
+ /*@modifies param */;
/**
*/