summaryrefslogtreecommitdiff
path: root/gcm.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcm.h')
-rw-r--r--gcm.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/gcm.h b/gcm.h
index 766019ae..e3b6a274 100644
--- a/gcm.h
+++ b/gcm.h
@@ -261,32 +261,6 @@ void
gcm_aes256_digest(struct gcm_aes256_ctx *ctx,
size_t length, uint8_t *digest);
-/* Old aes interface, for backwards compatibility */
-struct gcm_aes_ctx GCM_CTX(struct aes_ctx);
-
-void
-gcm_aes_set_key(struct gcm_aes_ctx *ctx,
- size_t length, const uint8_t *key);
-
-void
-gcm_aes_set_iv(struct gcm_aes_ctx *ctx,
- size_t length, const uint8_t *iv);
-
-void
-gcm_aes_update(struct gcm_aes_ctx *ctx,
- size_t length, const uint8_t *data);
-
-void
-gcm_aes_encrypt(struct gcm_aes_ctx *ctx,
- size_t length, uint8_t *dst, const uint8_t *src);
-
-void
-gcm_aes_decrypt(struct gcm_aes_ctx *ctx,
- size_t length, uint8_t *dst, const uint8_t *src);
-
-void
-gcm_aes_digest(struct gcm_aes_ctx *ctx, size_t length, uint8_t *digest);
-
struct gcm_camellia128_ctx GCM_CTX(struct camellia128_ctx);