]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Delete deprecated unsigned long member of union nettle_block16.
authorNiels Möller <nisse@lysator.liu.se>
Thu, 6 Mar 2025 19:15:25 +0000 (20:15 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Thu, 6 Mar 2025 19:15:25 +0000 (20:15 +0100)
ChangeLog
nettle-types.h

index ec690675ab2935f7c3e8aa8a8be38f95f1db0f54..954c3b0837842a6975b81e15d07eb630f7d0e8bf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2025-03-06  Niels Möller  <nisse@lysator.liu.se>
 
+       * nettle-types.h (union nettle_block16): Delete deprecated
+       unsigned long member of this union.
+
        * rsa-blind.c (_rsa_blind, _rsa_unblind): Delete file, delete
        obsolete functions (current RSA blinding functions are not exported).
 
index 75d9a5627c967f4327a3db231ce304bb5bf2e110..93a68f3b305c73ae8054da859b0494afc75f4093 100644 (file)
@@ -61,7 +61,6 @@ extern "C" {
 union nettle_block16
 {
   uint8_t b[16];
-  unsigned long w[16 / sizeof(unsigned long)] _NETTLE_ATTRIBUTE_DEPRECATED;
   uint64_t u64[2];
 };