]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Deleted _NETTLE_CIPHER.
authorNiels Möller <nisse@lysator.liu.se>
Thu, 6 Feb 2014 14:07:40 +0000 (15:07 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Thu, 6 Feb 2014 14:07:40 +0000 (15:07 +0100)
ChangeLog
nettle-internal.c
nettle-meta.h

index 6e21454ad4343c16577de75e081a4232f76ed8d7..24dcf9e0783b3df75e9f32393d6bf991c90371e9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,14 +1,17 @@
 2014-02-06  Niels Möller  <nisse@lysator.liu.se>
 
+       * nettle-meta.h (_NETTLE_CIPHER_SEP, _NETTLE_CIPHER_SEP_SET_KEY)
+       (_NETTLE_CIPHER_FIX, _NETTLE_CIPHER): Deleted unused macros.
+
+       * nettle-internal.c (nettle_blowfish128): Deleted only use of
+       _NETTLE_CIPHER.
+
        * blowfish.c (blowfish128_set_key): New function.
        * blowfish.h (BLOWFISH128_KEY_SIZE): New constant.
 
        * cast128-meta.c (nettle_cast128): Deleted only use of
        _NETTLE_CIPHER_FIX.
 
-       * nettle-meta.h (_NETTLE_CIPHER_SEP, _NETTLE_CIPHER_SEP_SET_KEY)
-       (_NETTLE_CIPHER_FIX): Deleted unused macros.
-
        * examples/nettle-benchmark.c (time_cipher): Fixed memset calls.
 
 2014-01-30  Niels Möller  <nisse@lysator.liu.se>
index ba24dee26d551f23d8e951389b914391d714faec..6733a3f19e5749f06d1b148c263b3a4db7c4dfdd 100644 (file)
@@ -64,7 +64,14 @@ nettle_des3 = {
 /* NOTE: This is not as nice as one might think, as we pretend
    blowfish_set_key has no return value. */
 const struct nettle_cipher
-nettle_blowfish128 = _NETTLE_CIPHER(blowfish, BLOWFISH, 128);
+nettle_blowfish128 =
+  { "blowfish128", sizeof(struct blowfish_ctx),
+    BLOWFISH_BLOCK_SIZE, BLOWFISH128_KEY_SIZE,
+    (nettle_set_key_func *) blowfish128_set_key,
+    (nettle_set_key_func *) blowfish128_set_key,
+    (nettle_crypt_func *) blowfish_encrypt,
+    (nettle_crypt_func *) blowfish_decrypt
+  };
 
 /* Sets a fix zero iv. For benchmarking only. */
 static void
index 8e08cb760dcc5218f91fb9d6e584437651308396..c4c7915939aed42c1c70beb704c569d0e0b422de 100644 (file)
@@ -5,7 +5,7 @@
 
 /* nettle, low-level cryptographics library
  *
- * Copyright (C) 2002 Niels Möller
+ * Copyright (C) 2002, 2014 Niels Möller
  *  
  * The nettle library is free software; you can redistribute it and/or modify
  * it under the terms of the GNU Lesser General Public License as published by
@@ -52,17 +52,6 @@ struct nettle_cipher
   nettle_crypt_func *decrypt;
 };
 
-#define _NETTLE_CIPHER(name, NAME, key_size) { \
-  #name #key_size,                             \
-  sizeof(struct name##_ctx),                   \
-  NAME##_BLOCK_SIZE,                           \
-  key_size / 8,                                        \
-  (nettle_set_key_func *) name##_set_key,      \
-  (nettle_set_key_func *) name##_set_key,      \
-  (nettle_crypt_func *) name##_encrypt,                \
-  (nettle_crypt_func *) name##_decrypt,                \
-}
-
 /* null-terminated list of ciphers implemented by this version of nettle */
 extern const struct nettle_cipher * const nettle_ciphers[];