From 05529af1aceb492ab9e5b676e40e275ab48a7f2f Mon Sep 17 00:00:00 2001 From: gotoyuzo Date: Mon, 14 Feb 2005 04:14:39 +0000 Subject: * ext/openssl/lib/openssl/ssl.rb (OpenSSL::SSL::SSLSocket#post_connection_check): new method. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/lib/openssl/ssl.rb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'ext/openssl') diff --git a/ext/openssl/lib/openssl/ssl.rb b/ext/openssl/lib/openssl/ssl.rb index 629109a1d..9c31fa73c 100644 --- a/ext/openssl/lib/openssl/ssl.rb +++ b/ext/openssl/lib/openssl/ssl.rb @@ -52,6 +52,32 @@ module OpenSSL class SSLSocket include Buffering include SocketForwarder + + def post_connection_check(hostname) + check_common_name = true + cert = peer_cert + cert.extensions.each{|ext| + next if ext.oid != "subjectAltName" + ext.value.split(/,\s+/).each{|general_name| + if /\ADNS:(.*)/ =~ general_name + check_common_name = false + reg = Regexp.escape($1).gsub(/\\\*/, "[^.]+") + return true if /\A#{reg}\z/i =~ hostname + elsif /\AIP Address:(.*)/ =~ general_name + check_common_name = false + return true if $1 == hostname + end + } + } + if check_common_name + cert.subject.to_a.each{|oid, value| + if oid == "CN" && value.casecmp(hostname) == 0 + return true + end + } + end + raise SSLError, "hostname not match" + end end class SSLServer -- cgit