diff options
author | Pauli <pauli@openssl.org> | 2021-05-31 06:27:18 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-06-02 08:30:15 +0200 |
commit | fb6ad22e36a1ade653f4b6881ddeee128e8b5001 (patch) | |
tree | 1df17934d0358d111ccab29770dfd3851604dbe4 /fuzz | |
parent | apps: remove TODOs (diff) | |
download | openssl-fb6ad22e36a1ade653f4b6881ddeee128e8b5001.tar.xz openssl-fb6ad22e36a1ade653f4b6881ddeee128e8b5001.zip |
fuzz: remove TODOs
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15539)
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/client.c | 4 | ||||
-rw-r--r-- | fuzz/server.c | 6 |
2 files changed, 0 insertions, 10 deletions
diff --git a/fuzz/client.c b/fuzz/client.c index b8afe55336..698ff0f669 100644 --- a/fuzz/client.c +++ b/fuzz/client.c @@ -63,10 +63,6 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) if (len == 0) 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()); 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()); |