summaryrefslogtreecommitdiff
path: root/cipher/twofish.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/twofish.c')
-rw-r--r--cipher/twofish.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/twofish.c b/cipher/twofish.c
index 157aa43a..fd3651e8 100644
--- a/cipher/twofish.c
+++ b/cipher/twofish.c
@@ -1019,13 +1019,13 @@ main()
-gcry_cipher_spec_t cipher_spec_twofish =
+gcry_cipher_spec_t _gcry_cipher_spec_twofish =
{
"TWOFISH", NULL, NULL, 16, 256, sizeof (TWOFISH_context),
twofish_setkey, twofish_encrypt, twofish_decrypt,
};
-gcry_cipher_spec_t cipher_spec_twofish128 =
+gcry_cipher_spec_t _gcry_cipher_spec_twofish128 =
{
"TWOFISH128", NULL, NULL, 16, 128, sizeof (TWOFISH_context),
twofish_setkey, twofish_encrypt, twofish_decrypt,