12件ヒット
[1-12件を表示]
(0.016秒)
ライブラリ
- openssl (12)
検索結果
-
OpenSSL
:: SSL :: SSLServer (18018.0) -
SSL サーバーのためのクラス。
...re 'openssl'
include OpenSSL
ctx = SSL::SSLContext.new()
ctx.cert = X509::Certificate.new(File.read('cert.pem'))
ctx.key = PKey::RSA.new(File.read('privkey.pem'))
svr = TCPServer.new(2007)
serv = SSL::SSLServer.new(svr, ctx)
loop do
while soc = serv.accept
puts soc.r...