summaryrefslogtreecommitdiff
path: root/cipher/serpent.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/serpent.c')
-rw-r--r--cipher/serpent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cipher/serpent.c b/cipher/serpent.c
index babca2fd..afb5af9f 100644
--- a/cipher/serpent.c
+++ b/cipher/serpent.c
@@ -956,21 +956,21 @@ static const char *cipher_spec_serpent128_aliases[] =
NULL,
};
-gcry_cipher_spec_t cipher_spec_serpent128 =
+gcry_cipher_spec_t _gcry_cipher_spec_serpent128 =
{
"SERPENT128", cipher_spec_serpent128_aliases, NULL, 16, 128,
sizeof (serpent_context_t),
serpent_setkey, serpent_encrypt, serpent_decrypt,
};
-gcry_cipher_spec_t cipher_spec_serpent192 =
+gcry_cipher_spec_t _gcry_cipher_spec_serpent192 =
{
"SERPENT192", NULL, NULL, 16, 192,
sizeof (serpent_context_t),
serpent_setkey, serpent_encrypt, serpent_decrypt,
};
-gcry_cipher_spec_t cipher_spec_serpent256 =
+gcry_cipher_spec_t _gcry_cipher_spec_serpent256 =
{
"SERPENT256", NULL, NULL, 16, 256,
sizeof (serpent_context_t),