aboutsummaryrefslogtreecommitdiffstats
path: root/libkeccak-legacy.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkeccak-legacy.h')
-rw-r--r--libkeccak-legacy.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/libkeccak-legacy.h b/libkeccak-legacy.h
index 7641711..3579b5e 100644
--- a/libkeccak-legacy.h
+++ b/libkeccak-legacy.h
@@ -12,3 +12,31 @@ 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 *restrict 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 *restrict 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 *restrict 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 *restrict state)
+{
+ return libkeccak_state_marshal(state, NULL);
+}