diff options
Diffstat (limited to '')
-rw-r--r-- | libkeccak-legacy.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libkeccak-legacy.h b/libkeccak-legacy.h new file mode 100644 index 0000000..7641711 --- /dev/null +++ b/libkeccak-legacy.h @@ -0,0 +1,14 @@ +/* See LICENSE file for copyright and license details. */ + + +LIBKECCAK_GCC_ONLY(__attribute__((__deprecated__("Use struct libkeccak_spec instead of libkeccak_spec_t")))) +typedef struct libkeccak_spec libkeccak_spec_t; + +LIBKECCAK_GCC_ONLY(__attribute__((__deprecated__("Use struct libkeccak_generalised_spec instead of libkeccak_generalised_spec_t")))) +typedef struct libkeccak_generalised_spec libkeccak_generalised_spec_t; + +LIBKECCAK_GCC_ONLY(__attribute__((__deprecated__("Use struct libkeccak_state instead of libkeccak_state_t")))) +typedef struct libkeccak_state libkeccak_state_t; + +LIBKECCAK_GCC_ONLY(__attribute__((__deprecated__("Use struct libkeccak_hmac_state instead of libkeccak_hmac_state_t")))) +typedef struct libkeccak_hmac_state libkeccak_hmac_state_t; |