From: Niels Möller Date: Thu, 6 Mar 2025 19:15:25 +0000 (+0100) Subject: Delete deprecated unsigned long member of union nettle_block16. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1139107378e4f4ea625d1ade8daa0001bd35fdf9;p=thirdparty%2Fnettle.git Delete deprecated unsigned long member of union nettle_block16. --- diff --git a/ChangeLog b/ChangeLog index ec690675..954c3b08 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2025-03-06 Niels Möller + * 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). diff --git a/nettle-types.h b/nettle-types.h index 75d9a562..93a68f3b 100644 --- a/nettle-types.h +++ b/nettle-types.h @@ -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]; };