mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 28afe277a8
			
		
	
	
		28afe277a8
		
	
	
	
	
		
			
			* lib/webrick/cgi.rb: ditto. * lib/webrick/config.rb: ditto. * lib/webrick/cookie.rb: ditto. * lib/webrick/httpauth/authenticator.rb: ditto. * lib/webrick/httpauth/basicauth.rb: ditto. * lib/webrick/httpauth/digestauth.rb: ditto. * lib/webrick/httpproxy.rb: ditto. * lib/webrick/httprequest.rb: ditto. * lib/webrick/httpresponse.rb: ditto. * lib/webrick/https.rb: ditto. * lib/webrick/httpserver.rb: ditto. * lib/webrick/httpservlet/cgihandler.rb: ditto. * lib/webrick/httpservlet/filehandler.rb: ditto. * lib/webrick/httpservlet/prochandler.rb: ditto. * lib/webrick/httputils.rb: ditto. * lib/webrick/httpversion.rb: ditto. * lib/webrick/log.rb: ditto. * lib/webrick/server.rb: ditto. * lib/webrick/ssl.rb: ditto. * lib/webrick/utils.rb: ditto. * lib/webrick/version.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			86 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
	
		
			1.9 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| #
 | |
| # https.rb -- SSL/TLS enhancement for HTTPServer
 | |
| #
 | |
| # Author: IPR -- Internet Programming with Ruby -- writers
 | |
| # Copyright (c) 2001 GOTOU Yuuzou
 | |
| # Copyright (c) 2002 Internet Programming with Ruby writers. All rights
 | |
| # reserved.
 | |
| #
 | |
| # $IPR: https.rb,v 1.15 2003/07/22 19:20:42 gotoyuzo Exp $
 | |
| 
 | |
| require 'webrick/ssl'
 | |
| 
 | |
| module WEBrick
 | |
|   module Config
 | |
|     HTTP.update(SSL)
 | |
|   end
 | |
| 
 | |
|   ##
 | |
|   #--
 | |
|   # Adds SSL functionality to WEBrick::HTTPRequest
 | |
| 
 | |
|   class HTTPRequest
 | |
| 
 | |
|     ##
 | |
|     # HTTP request SSL cipher
 | |
| 
 | |
|     attr_reader :cipher
 | |
| 
 | |
|     ##
 | |
|     # HTTP request server certificate
 | |
| 
 | |
|     attr_reader :server_cert
 | |
| 
 | |
|     ##
 | |
|     # HTTP request client certificate
 | |
| 
 | |
|     attr_reader :client_cert
 | |
| 
 | |
|     # :stopdoc:
 | |
| 
 | |
|     alias orig_parse parse
 | |
| 
 | |
|     def parse(socket=nil)
 | |
|       if socket.respond_to?(:cert)
 | |
|         @server_cert = socket.cert || @config[:SSLCertificate]
 | |
|         @client_cert = socket.peer_cert
 | |
|         @client_cert_chain = socket.peer_cert_chain
 | |
|         @cipher      = socket.cipher
 | |
|       end
 | |
|       orig_parse(socket)
 | |
|     end
 | |
| 
 | |
|     alias orig_parse_uri parse_uri
 | |
| 
 | |
|     def parse_uri(str, scheme="https")
 | |
|       if server_cert
 | |
|         return orig_parse_uri(str, scheme)
 | |
|       end
 | |
|       return orig_parse_uri(str)
 | |
|     end
 | |
|     private :parse_uri
 | |
| 
 | |
|     alias orig_meta_vars meta_vars
 | |
| 
 | |
|     def meta_vars
 | |
|       meta = orig_meta_vars
 | |
|       if server_cert
 | |
|         meta["HTTPS"] = "on"
 | |
|         meta["SSL_SERVER_CERT"] = @server_cert.to_pem
 | |
|         meta["SSL_CLIENT_CERT"] = @client_cert ? @client_cert.to_pem : ""
 | |
|         if @client_cert_chain
 | |
|           @client_cert_chain.each_with_index{|cert, i|
 | |
|             meta["SSL_CLIENT_CERT_CHAIN_#{i}"] = cert.to_pem
 | |
|           }
 | |
|         end
 | |
|         meta["SSL_CIPHER"] = @cipher[0]
 | |
|         meta["SSL_PROTOCOL"] = @cipher[1]
 | |
|         meta["SSL_CIPHER_USEKEYSIZE"] = @cipher[2].to_s
 | |
|         meta["SSL_CIPHER_ALGKEYSIZE"] = @cipher[3].to_s
 | |
|       end
 | |
|       meta
 | |
|     end
 | |
| 
 | |
|     # :startdoc:
 | |
|   end
 | |
| end
 |