aboutsummaryrefslogtreecommitdiffstats
path: root/libkeccak-legacy.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2024-09-15 00:37:13 +0200
committerMattias Andrée <maandree@kth.se>2024-09-15 00:37:13 +0200
commit0ab7b5a1ce4ed6735b40e167f8b05b8bf1fede59 (patch)
treeaf2a138767835010d50611790265bbd2bdc2adae /libkeccak-legacy.h
parentm (diff)
downloadlibkeccak-0ab7b5a1ce4ed6735b40e167f8b05b8bf1fede59.tar.gz
libkeccak-0ab7b5a1ce4ed6735b40e167f8b05b8bf1fede59.tar.bz2
libkeccak-0ab7b5a1ce4ed6735b40e167f8b05b8bf1fede59.tar.xz
Split libkeccak.h and fix support for architectures that do not allow misaligned memory
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'libkeccak-legacy.h')
-rw-r--r--libkeccak-legacy.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/libkeccak-legacy.h b/libkeccak-legacy.h
deleted file mode 100644
index 3516053..0000000
--- a/libkeccak-legacy.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/* 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;
-
-LIBKECCAK_GCC_ONLY(__attribute__((__deprecated__("Use libkeccak_hmac_unmarshal(NULL, data) instead of libkeccak_hmac_unmarshal_skip(data)"))))
-static inline size_t
-libkeccak_hmac_unmarshal_skip(const void *data)
-{
- return libkeccak_hmac_unmarshal(NULL, data);
-}
-
-LIBKECCAK_GCC_ONLY(__attribute__((__deprecated__("Use libkeccak_state_unmarshal(NULL, data) instead of libkeccak_state_unmarshal_skip(data)"))))
-static inline size_t
-libkeccak_state_unmarshal_skip(const void *data)
-{
- return libkeccak_state_unmarshal(NULL, data);
-}
-
-LIBKECCAK_GCC_ONLY(__attribute__((__deprecated__("Use libkeccak_hmac_marshal(state, NULL) instead of libkeccak_hmac_marshal_size(state)"))))
-static inline size_t
-libkeccak_hmac_marshal_size(const struct libkeccak_hmac_state *state)
-{
- return libkeccak_hmac_marshal(state, NULL);
-}
-
-LIBKECCAK_GCC_ONLY(__attribute__((__deprecated__("Use libkeccak_state_marshal(state, NULL) instead of libkeccak_state_marshal_size(state)"))))
-static inline size_t
-libkeccak_state_marshal_size(const struct libkeccak_state *state)
-{
- return libkeccak_state_marshal(state, NULL);
-}