X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=fuzz%2Fserver.c;fp=fuzz%2Fserver.c;h=e481e5621ce397c733f928561e529e43c6cd635a;hp=6234e15ccc0114a1ff91fdca3cbec6dd2f8afe9f;hb=fb6ad22e36a1ade653f4b6881ddeee128e8b5001;hpb=db70dc2cdac6dec2366138fe1f46bf433ee1c2c8 diff --git a/fuzz/server.c b/fuzz/server.c index 6234e15ccc..e481e5621c 100644 --- a/fuzz/server.c +++ b/fuzz/server.c @@ -538,10 +538,6 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) if (len < 2) return 0; - /* - * TODO: use the ossltest engine (optionally?) to disable crypto checks. - */ - /* This only fuzzes the initial flow from the client so far. */ ctx = SSL_CTX_new(SSLv23_method()); @@ -618,8 +614,6 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) X509_free(cert); #endif - /* TODO: Set up support for SRP and PSK */ - server = SSL_new(ctx); in = BIO_new(BIO_s_mem()); out = BIO_new(BIO_s_mem());