summaryrefslogtreecommitdiff
path: root/beecrypt/dhaes.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/dhaes.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/dhaes.h')
-rw-r--r--beecrypt/dhaes.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/beecrypt/dhaes.h b/beecrypt/dhaes.h
index 654e492b1..4cdc1d32d 100644
--- a/beecrypt/dhaes.h
+++ b/beecrypt/dhaes.h
@@ -37,8 +37,8 @@ typedef struct
const hashFunction* hash;
const blockCipher* cipher;
const keyedHashFunction* mac;
- int cipherkeybits;
- int mackeybits;
+ size_t cipherkeybits;
+ size_t mackeybits;
} dhaes_pParameters;
/**
@@ -51,8 +51,8 @@ typedef struct
hashFunctionContext hash;
blockCipherContext cipher;
keyedHashFunctionContext mac;
- int cipherkeybits;
- int mackeybits;
+ size_t cipherkeybits;
+ size_t mackeybits;
} dhaes_pContext;
#ifdef __cplusplus