mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 21:14:23 +02:00

a builtin. * ext/openssl/lib/openssl/buffering.rb (Buffering#close): ditto. * ext/openssl/lib/openssl/buffering.rb (Buffering#puts): should add a return to the tails of each line. * ext/openssl/lib/openssl/ssl.rb: new class OpenSSL::SSL::SSLServer. * ext/openssl/lib/net/protocols.rb (SSLIO#ssl_connect): use sync_close. * ext/openssl/sample/echo_svr.rb: use SSLServer. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4407 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
53 lines
1.2 KiB
Ruby
53 lines
1.2 KiB
Ruby
=begin
|
|
= $RCSfile$ -- SSL/TLS enhancement for Net.
|
|
|
|
= Info
|
|
'OpenSSL for Ruby 2' project
|
|
Copyright (C) 2001 GOTOU YUUZOU <gotoyuzo@notwork.org>
|
|
All rights reserved.
|
|
|
|
= Licence
|
|
This program is licenced under the same licence as Ruby.
|
|
(See the file 'LICENCE'.)
|
|
|
|
= Requirements
|
|
This program requires Net 1.2.0 or higher version.
|
|
You can get it from RAA or Ruby's CVS repository.
|
|
|
|
= Version
|
|
$Id$
|
|
|
|
2001/11/06: Contiributed to Ruby/OpenSSL project.
|
|
=end
|
|
|
|
require 'net/protocol'
|
|
require 'forwardable'
|
|
require 'openssl'
|
|
|
|
module Net
|
|
class SSLIO < InternetMessageIO
|
|
extend Forwardable
|
|
|
|
def_delegators(:@ssl_context,
|
|
:key=, :cert=, :key_file=, :cert_file=,
|
|
:ca_file=, :ca_path=,
|
|
:verify_mode=, :verify_callback=, :verify_depth=,
|
|
:timeout=, :cert_store=)
|
|
|
|
def initialize(addr, port, otime = nil, rtime = nil, dout = nil)
|
|
super
|
|
@ssl_context = OpenSSL::SSL::SSLContext.new()
|
|
end
|
|
|
|
def ssl_connect()
|
|
@socket = OpenSSL::SSL::SSLSocket.new(@socket, @ssl_context)
|
|
@socket.sync = true
|
|
@socket.sync_close = true
|
|
@socket.connect
|
|
end
|
|
|
|
def peer_cert
|
|
@socket.peer_cert
|
|
end
|
|
end
|
|
end
|