From: Niels Möller Date: Thu, 6 Feb 2014 13:13:15 +0000 (+0100) Subject: Deleted _NETTLE_CIPHER_SEP and _NETTLE_CIPHER_SEP_SET_KEY. X-Git-Tag: nettle_3.0_release_20140607~146 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a495057f8e54cf0d79e3fd53e25146b9eb8803ca;p=thirdparty%2Fnettle.git Deleted _NETTLE_CIPHER_SEP and _NETTLE_CIPHER_SEP_SET_KEY. --- diff --git a/ChangeLog b/ChangeLog index 9632977b..0fc58f61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2014-02-06 Niels Möller + * nettle-meta.h (_NETTLE_CIPHER_SEP, _NETTLE_CIPHER_SEP_SET_KEY): + Deleted unused macros. + * examples/nettle-benchmark.c (time_cipher): Fixed memset calls. 2014-01-30 Niels Möller diff --git a/nettle-meta.h b/nettle-meta.h index 16cc77bc..bac38353 100644 --- a/nettle-meta.h +++ b/nettle-meta.h @@ -63,28 +63,6 @@ struct nettle_cipher (nettle_crypt_func *) name##_decrypt, \ } -#define _NETTLE_CIPHER_SEP(name, NAME, key_size) { \ - #name #key_size, \ - sizeof(struct name##_ctx), \ - NAME##_BLOCK_SIZE, \ - key_size / 8, \ - (nettle_set_key_func *) name##_set_encrypt_key, \ - (nettle_set_key_func *) name##_set_decrypt_key, \ - (nettle_crypt_func *) name##_encrypt, \ - (nettle_crypt_func *) name##_decrypt, \ -} - -#define _NETTLE_CIPHER_SEP_SET_KEY(name, NAME, key_size) {\ - #name #key_size, \ - sizeof(struct name##_ctx), \ - NAME##_BLOCK_SIZE, \ - key_size / 8, \ - (nettle_set_key_func *) name##_set_encrypt_key, \ - (nettle_set_key_func *) name##_set_decrypt_key, \ - (nettle_crypt_func *) name##_crypt, \ - (nettle_crypt_func *) name##_crypt, \ -} - #define _NETTLE_CIPHER_FIX(name, NAME) { \ #name, \ sizeof(struct name##_ctx), \