diff options
author | jbj <devnull@localhost> | 2002-06-14 20:31:05 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-06-14 20:31:05 +0000 |
commit | 609f6ba9c8c281275fbe8948318050c172e46462 (patch) | |
tree | 5a42d4a61424da1a98b771d5987c8160205ac788 /beecrypt/hmac.h | |
parent | 243ff70d72f270941de5ac0122b8a72eb46a65f1 (diff) | |
download | librpm-tizen-609f6ba9c8c281275fbe8948318050c172e46462.tar.gz librpm-tizen-609f6ba9c8c281275fbe8948318050c172e46462.tar.bz2 librpm-tizen-609f6ba9c8c281275fbe8948318050c172e46462.zip |
First crack at merging beecrypt-2.3.0 changes.
CVS patchset: 5484
CVS date: 2002/06/14 20:31:05
Diffstat (limited to 'beecrypt/hmac.h')
-rw-r--r-- | beecrypt/hmac.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/beecrypt/hmac.h b/beecrypt/hmac.h index 32d94e18d..2152665eb 100644 --- a/beecrypt/hmac.h +++ b/beecrypt/hmac.h @@ -5,7 +5,7 @@ */ /* - * Copyright (c) 1999, 2000 Virtual Unlimited B.V. + * Copyright (c) 1999, 2000, 2002 Virtual Unlimited B.V. * * Author: Bob Deblier <bob@virtualunlimited.com> * @@ -34,8 +34,8 @@ */ typedef struct { - uint32 kxi[16]; - uint32 kxo[16]; + byte kxi[64]; + byte kxo[64]; } hmacParam; #ifdef __cplusplus |