commit f9957dadc2dd34dfa20bedade95ff944934afca7
parent 5add51b8411caada6b6acea5d498b26b133812b9
Author: sin <sin@2f30.org>
Date: Tue, 12 Apr 2016 16:21:35 +0100
align cipher table
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/crypto.c b/crypto.c
@@ -16,9 +16,9 @@ findcipher(char *name)
const char *name;
const EVP_AEAD *(*aeadfn)(void);
} *cp, ciphers[] = {
- { "aes-128-gcm", EVP_aead_aes_128_gcm },
- { "aes-256-gcm", EVP_aead_aes_256_gcm },
- { "chacha20-poly1305", EVP_aead_chacha20_poly1305 },
+ { "aes-128-gcm", EVP_aead_aes_128_gcm },
+ { "aes-256-gcm", EVP_aead_aes_256_gcm },
+ { "chacha20-poly1305", EVP_aead_chacha20_poly1305 },
{ "chacha20-poly1305-ietf", EVP_aead_chacha20_poly1305_ietf },
{ NULL, NULL }
};