summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Möller <nisse@lysator.liu.se>2020-11-28 12:03:54 +0100
committerNiels Möller <nisse@lysator.liu.se>2020-11-28 12:03:54 +0100
commit44090d258f3b059ef29a0f76013a5b97c4d696a4 (patch)
treed060856b50d50ffcdf9479c3237e7d8036b21973
parentca370920138bda6622dc62a2f007512e77088524 (diff)
downloadnettle-ppc-gcm.tar.gz
Simplify ifdefs in gcm-internal.hppc-gcm
-rw-r--r--gcm-internal.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/gcm-internal.h b/gcm-internal.h
index 36d5f6f3..2e28be2d 100644
--- a/gcm-internal.h
+++ b/gcm-internal.h
@@ -33,30 +33,20 @@
#define NETTLE_GCM_INTERNAL_H_INCLUDED
/* Functions available only in some configurations */
-#if HAVE_NATIVE_gcm_init_key
void
_nettle_gcm_init_key (union nettle_block16 *table);
-#endif
-#if HAVE_NATIVE_gcm_hash
void
_nettle_gcm_hash(const struct gcm_key *key, union nettle_block16 *x,
size_t length, const uint8_t *data);
-#endif
#if HAVE_NATIVE_fat_gcm_init_key
void
-_nettle_gcm_init_key (union nettle_block16 *table);
-
-void
_nettle_gcm_init_key_c (union nettle_block16 *table);
#endif
#if HAVE_NATIVE_fat_gcm_hash
void
-_nettle_gcm_hash(const struct gcm_key *key, union nettle_block16 *x,
- size_t length, const uint8_t *data);
-void
_nettle_gcm_hash_c (const struct gcm_key *key, union nettle_block16 *x,
size_t length, const uint8_t *data);
#endif