diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
commit | 5796aa164d79b2ffaf2839b281d490be6a72d1d8 (patch) | |
tree | 4031a623426b19bf03b2c61cd73a504e218fb1fb /Source/charon/transforms/hmac.c | |
parent | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (diff) | |
download | strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.bz2 strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.xz |
- typedefs changed
Diffstat (limited to 'Source/charon/transforms/hmac.c')
-rw-r--r-- | Source/charon/transforms/hmac.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Source/charon/transforms/hmac.c b/Source/charon/transforms/hmac.c index 760d56218..589716f9d 100644 --- a/Source/charon/transforms/hmac.c +++ b/Source/charon/transforms/hmac.c @@ -1,9 +1,7 @@ /** * @file hmac.c * - * @brief Implementation of message authentication - * using cryptographic hash functions (HMAC). See RFC2104. - * + * @brief Implementation of hmac_t */ /* @@ -26,13 +24,13 @@ #include <utils/allocator.h> +typedef struct private_hmac_t private_hmac_t; + /** * Private data of an hmac_t object. * */ -typedef struct private_hmac_s private_hmac_t; - -struct private_hmac_s { +struct private_hmac_t { /** * public hmac_t interface */ |