2014-02-06 Niels Möller <nisse@lysator.liu.se>
+ * 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 <nisse@lysator.liu.se>
(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), \