diff options
Diffstat (limited to 'test/openssl/utils.rb')
-rw-r--r-- | test/openssl/utils.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/test/openssl/utils.rb b/test/openssl/utils.rb index 4110d9b0f2..e38b190927 100644 --- a/test/openssl/utils.rb +++ b/test/openssl/utils.rb @@ -186,14 +186,6 @@ class OpenSSL::SSLTestCase < OpenSSL::TestCase @server = nil end - def tls13_supported? - return false unless defined?(OpenSSL::SSL::TLS1_3_VERSION) - ctx = OpenSSL::SSL::SSLContext.new - ctx.min_version = ctx.max_version = OpenSSL::SSL::TLS1_3_VERSION - true - rescue - end - def readwrite_loop(ctx, ssl) while line = ssl.gets ssl.write(line) |