Sha256: b8d6ad2ffd01d54fb03c2ad20e9216899c2a8af777ea513382d56f7716d5175b
Contents?: true
Size: 1.69 KB
Versions: 10
Compression:
Stored size: 1.69 KB
Contents
# -*- encoding: utf-8 -*- # # Reference: https://github.com/stompgem/stomp/wiki/extended-ssl-overview # require "rubygems" require "stomp" # # == SSL Use Case 3 - server *does* authenticate client, client does *not* authenticate server # # Subcase 3.A - Message broker configuration does *not* require client authentication # # - Expect connection success # - Expect a verify result of 20 becuase the client did not authenticate the # server's certificate. # # Subcase 3.B - Message broker configuration *does* require client authentication # # - Expect connection success if the server can authenticate the client certificate # - Expect a verify result of 20 because the client did not authenticate the # server's certificate. # class ExampleSSL3 # Initialize. def initialize end # Run example. def run # Change the following: # * location of the client's signed certificate # * location of the client's private key. ssl_opts = Stomp::SSLParams.new( :key_file => "/home/gmallard/sslwork/2013/client.key", # the client's private key :cert_file => "/home/gmallard/sslwork/2013/client.crt", # the client's signed certificate :fsck => true # Check that the files exist first ) # hash = { :hosts => [ {:login => 'guest', :passcode => 'guest', :host => 'localhost', :port => 61612, :ssl => ssl_opts}, ], :reliable => false, # YMMV, to test this in a sane manner } # puts "Connect starts, SSL Use Case 3" c = Stomp::Connection.new(hash) puts "Connect completed" puts "SSL Verify Result: #{ssl_opts.verify_result}" # puts "SSL Peer Certificate:\n#{ssl_opts.peer_cert}" c.disconnect end end # e = ExampleSSL3.new e.run
Version data entries
10 entries across 10 versions & 1 rubygems