summaryrefslogtreecommitdiff
path: root/lib/libcrypto
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-05-15 15:44:20 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-05-15 15:44:20 +0000
commit90cb1563d94c2f4e063089cfb8e741779fe14390 (patch)
treeabea4fe19de01359a6d73a0e35dffb5dd647379c /lib/libcrypto
parent92181d91aaa4c3ced0c9b963547643dbe8a7176c (diff)
Use C99 initialisers for the AEAD struct.
Diffstat (limited to 'lib/libcrypto')
-rw-r--r--lib/libcrypto/evp/e_chacha20poly1305.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/libcrypto/evp/e_chacha20poly1305.c b/lib/libcrypto/evp/e_chacha20poly1305.c
index 6e4a3f507aa..75ff7f209cc 100644
--- a/lib/libcrypto/evp/e_chacha20poly1305.c
+++ b/lib/libcrypto/evp/e_chacha20poly1305.c
@@ -238,15 +238,15 @@ aead_chacha20_poly1305_open(const EVP_AEAD_CTX *ctx, unsigned char *out,
}
static const EVP_AEAD aead_chacha20_poly1305 = {
- 32, /* key len */
- CHACHA20_NONCE_LEN, /* nonce len */
- POLY1305_TAG_LEN, /* overhead */
- POLY1305_TAG_LEN, /* max tag length */
-
- aead_chacha20_poly1305_init,
- aead_chacha20_poly1305_cleanup,
- aead_chacha20_poly1305_seal,
- aead_chacha20_poly1305_open,
+ .key_len = 32,
+ .nonce_len = CHACHA20_NONCE_LEN,
+ .overhead = POLY1305_TAG_LEN,
+ .max_tag_len = POLY1305_TAG_LEN,
+
+ .init = aead_chacha20_poly1305_init,
+ .cleanup = aead_chacha20_poly1305_cleanup,
+ .seal = aead_chacha20_poly1305_seal,
+ .open = aead_chacha20_poly1305_open,
};
const EVP_AEAD *