From 20a95ef2731ce21acfe5c1ba97b40001217b0216 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 2 Nov 2013 14:34:01 +0100 Subject: Convert aes128-gcm into a generic gcm method --- src/crypto/cipher/ciphers.c.in | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/crypto') diff --git a/src/crypto/cipher/ciphers.c.in b/src/crypto/cipher/ciphers.c.in index 7ae2dea..6ff058f 100644 --- a/src/crypto/cipher/ciphers.c.in +++ b/src/crypto/cipher/ciphers.c.in @@ -91,6 +91,17 @@ void fastd_cipher_free(fastd_context_t *ctx) { free(ctx->cipher_contexts); } +bool fastd_cipher_available(const char *name) { + size_t i; + for (i = 0; i < array_size(ciphers); i++) { + if (!strcmp(ciphers[i].name, name)) { + return true; + } + } + + return false; +} + const fastd_cipher_t* fastd_cipher_get_by_name(fastd_context_t *ctx, const char *name, fastd_cipher_context_t **cctx) { size_t i; for (i = 0; i < array_size(ciphers); i++) { -- cgit v1.2.3