diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-05-12 19:17:52 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2009-05-14 13:55:55 +0200 |
commit | 3bc613d01d71c08dd52f75e0f39db7d6c9a61893 (patch) | |
tree | 8b65d9d266e49f0f850fa164790d5e0871b90856 /src/libstrongswan/plugins/blowfish | |
parent | 42dd330305013701aca7a0ff6f265e4324a2ad39 (diff) | |
download | strongswan-3bc613d01d71c08dd52f75e0f39db7d6c9a61893.tar.bz2 strongswan-3bc613d01d71c08dd52f75e0f39db7d6c9a61893.tar.xz |
blowfish block size is 8 bytes
Diffstat (limited to 'src/libstrongswan/plugins/blowfish')
-rw-r--r-- | src/libstrongswan/plugins/blowfish/blowfish_crypter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/blowfish/blowfish_crypter.c b/src/libstrongswan/plugins/blowfish/blowfish_crypter.c index cd7c36c28..e64f6f23d 100644 --- a/src/libstrongswan/plugins/blowfish/blowfish_crypter.c +++ b/src/libstrongswan/plugins/blowfish/blowfish_crypter.c @@ -64,7 +64,7 @@ #include "blowfish_crypter.h" -#define BLOWFISH_BLOCK_SIZE 16 +#define BLOWFISH_BLOCK_SIZE 8 typedef struct private_blowfish_crypter_t private_blowfish_crypter_t; |