aboutsummaryrefslogtreecommitdiffstats
path: root/fuzz/server.c
diff options
context:
space:
mode:
Diffstat (limited to 'fuzz/server.c')
-rw-r--r--fuzz/server.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fuzz/server.c b/fuzz/server.c
index 3b5df9dc42..c2c54b9e25 100644
--- a/fuzz/server.c
+++ b/fuzz/server.c
@@ -258,6 +258,8 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len)
X509_free(cert);
server = SSL_new(ctx);
+ ret = SSL_set_cipher_list(server, "ALL:eNULL:@SECLEVEL=0");
+ OPENSSL_assert(ret == 1);
in = BIO_new(BIO_s_mem());
out = BIO_new(BIO_s_mem());
SSL_set_bio(server, in, out);