diff options
author | Martin Willi <martin@strongswan.org> | 2006-05-10 07:32:34 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-05-10 07:32:34 +0000 |
commit | bc4a07a0adc9e31af75576477fbed488c31edaa4 (patch) | |
tree | 82a8ba5612c448b8db585b437fbbe38ef243a0ba /src/libfreeswan/libcrypto/libtwofish/twofish_cbc.c | |
parent | 37a2b616e28649b6db7c87e96b375ba1176b52cc (diff) | |
download | strongswan-bc4a07a0adc9e31af75576477fbed488c31edaa4.tar.bz2 strongswan-bc4a07a0adc9e31af75576477fbed488c31edaa4.tar.xz |
- started to rebuild source layout
Diffstat (limited to 'src/libfreeswan/libcrypto/libtwofish/twofish_cbc.c')
-rw-r--r-- | src/libfreeswan/libcrypto/libtwofish/twofish_cbc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libfreeswan/libcrypto/libtwofish/twofish_cbc.c b/src/libfreeswan/libcrypto/libtwofish/twofish_cbc.c new file mode 100644 index 000000000..6e5cf9025 --- /dev/null +++ b/src/libfreeswan/libcrypto/libtwofish/twofish_cbc.c @@ -0,0 +1,8 @@ +#ifdef __KERNEL__ +#include <linux/types.h> +#else +#include <sys/types.h> +#endif +#include "twofish_cbc.h" +#include "cbc_generic.h" +CBC_IMPL_BLK16(twofish_cbc_encrypt, twofish_context, u_int8_t *, twofish_encrypt, twofish_decrypt); |