diff options
author | Werner Koch <wk@gnupg.org> | 2001-03-29 10:01:44 +0000 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2001-03-29 10:01:44 +0000 |
commit | 7e68abda362fce76e91631973d062fd7c8ff5e4e (patch) | |
tree | d4c9e9156fde813d270dbe0963756d4a2c7ec191 /cipher/twofish.c | |
parent | 0eecba659555d50cd7bdd26daef9a32334759dc4 (diff) | |
download | libgcrypt-7e68abda362fce76e91631973d062fd7c8ff5e4e.tar.gz |
Fixed the bug in the hash code
Diffstat (limited to 'cipher/twofish.c')
-rw-r--r-- | cipher/twofish.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/twofish.c b/cipher/twofish.c index 5766021c..ffd75360 100644 --- a/cipher/twofish.c +++ b/cipher/twofish.c @@ -1002,7 +1002,7 @@ twofish_get_info (int algo, size_t *keylen, return NULL; } - +#ifdef IS_MODULE const char * const gnupgext_version = "TWOFISH ($Revision$)"; static struct { @@ -1061,4 +1061,4 @@ gnupgext_enum_func ( int what, int *sequence, int *class, int *vers ) *sequence = i; return ret; } - +#endif /*IS_MODULE*/ |