summaryrefslogtreecommitdiff
path: root/lib/webrick/https.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/webrick/https.rb')
-rw-r--r--lib/webrick/https.rb54
1 files changed, 0 insertions, 54 deletions
diff --git a/lib/webrick/https.rb b/lib/webrick/https.rb
deleted file mode 100644
index 4e44cfab32..0000000000
--- a/lib/webrick/https.rb
+++ /dev/null
@@ -1,54 +0,0 @@
-#
-# 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
-
- class HTTPRequest
- attr_reader :cipher, :server_cert, :client_cert
-
- alias orig_parse parse
-
- def parse(socket=nil)
- if socket && socket.is_a?(OpenSSL::SSL::SSLSocket)
- @server_cert = @config[:SSLCertificate]
- @client_cert = socket.peer_cert
- @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
-
- 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 : ""
- meta["SSL_CIPHER"] = @cipher[0]
- end
- meta
- end
- end
-end