ruby-tls 2.3.2 → 2.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ruby-tls/ssl.rb +1 -2
- data/lib/ruby-tls/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 38cbb22373f7491d827fc4a025b9876bdc362185
|
|
4
|
+
data.tar.gz: 7f3196ae038b7d74127e42a1094ca2e9e44e364b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf66425b0c70535efe45e6580491c5cf32423c131b232ff647b656bd195da06059fcd5075cf1694726de6785a64d51772c9adc22215388cf25f78c4239f7a1b7
|
|
7
|
+
data.tar.gz: 4bd331cc6a150b3f6a5443d49dfd951af82cf1f56f203dac08322c8f8b7c376e69b51d589449002fddb3b0ce3db6b288185edd66d46041a3369c00d7f953177e
|
data/lib/ruby-tls/ssl.rb
CHANGED
|
@@ -121,8 +121,6 @@ module RubyTls
|
|
|
121
121
|
attach_function :TLS_server_method, [], :pointer
|
|
122
122
|
attach_function :TLS_client_method, [], :pointer
|
|
123
123
|
|
|
124
|
-
VERSION_SUPPORTED = true
|
|
125
|
-
|
|
126
124
|
SSL3_VERSION = 0x0300
|
|
127
125
|
TLS1_VERSION = 0x0301
|
|
128
126
|
TLS1_1_VERSION = 0x0302
|
|
@@ -132,6 +130,7 @@ module RubyTls
|
|
|
132
130
|
ANY_VERSION = 0
|
|
133
131
|
attach_function :SSL_CTX_set_min_proto_version, [:ssl_ctx, :int], :int
|
|
134
132
|
attach_function :SSL_CTX_set_max_proto_version, [:ssl_ctx, :int], :int
|
|
133
|
+
VERSION_SUPPORTED = true
|
|
135
134
|
rescue FFI::NotFoundError
|
|
136
135
|
attach_function :SSLv23_server_method, [], :pointer
|
|
137
136
|
attach_function :SSLv23_client_method, [], :pointer
|
data/lib/ruby-tls/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-tls
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.3.
|
|
4
|
+
version: 2.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen von Takach
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-10-
|
|
11
|
+
date: 2017-10-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi-compiler
|