stun

simple point to point tunnel
git clone git://git.2f30.org/stun
Log | Files | Refs | README

commit fd30af25215efe50da869375ccb62ec266a7f785
parent ab794f62a0062dd0537381043c26e12bdabee206
Author: sin <sin@2f30.org>
Date:   Tue, 12 Apr 2016 17:27:09 +0100

disable poly1305-ietf temporarily

Diffstat:
Mcrypto.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/crypto.c b/crypto.c @@ -19,7 +19,9 @@ setcipher(char *name) { "aes-128-gcm", EVP_aead_aes_128_gcm }, { "aes-256-gcm", EVP_aead_aes_256_gcm }, { "chacha20-poly1305", EVP_aead_chacha20_poly1305 }, +#if 0 /* disable for now as OpenBSD 5.8 does not include this cipher */ { "chacha20-poly1305-ietf", EVP_aead_chacha20_poly1305_ietf }, +#endif { NULL, NULL } };