Sha256: 575c1f630824bb4194e41597e1974c9d0ad1e387f9be6abc8dd31ca7299cb23a

Contents?: true

Size: 1.91 KB

Versions: 14

Compression:

Stored size: 1.91 KB

Contents

# -*- encoding: utf-8 -*-

#
# Reference: https://github.com/stompgem/stomp/wiki/extended-ssl-overview
#
require "rubygems"
require "stomp"
#
# == SSL Use Case 1 - User Supplied Ciphers
#
# If you need your own ciphers list, this is how.
# Stomp's default list will work in many cases.  If you need to use this, you
# will know it because SSL connect will fail.  In that case, determining
# _what_ should be in the list is your responsibility.
#
class ExampleSSL1C
  # Initialize.
  def initialize
  end
  # Run example.
  def run
    ciphers_list = [["DHE-RSA-AES256-SHA", "TLSv1/SSLv3", 256, 256], ["DHE-DSS-AES256-SHA", "TLSv1/SSLv3", 256, 256], ["AES256-SHA", "TLSv1/SSLv3", 256, 256], ["EDH-RSA-DES-CBC3-SHA", "TLSv1/SSLv3", 168, 168], ["EDH-DSS-DES-CBC3-SHA", "TLSv1/SSLv3", 168, 168], ["DES-CBC3-SHA", "TLSv1/SSLv3", 168, 168], ["DHE-RSA-AES128-SHA", "TLSv1/SSLv3", 128, 128], ["DHE-DSS-AES128-SHA", "TLSv1/SSLv3", 128, 128], ["AES128-SHA", "TLSv1/SSLv3", 128, 128], ["RC4-SHA", "TLSv1/SSLv3", 128, 128], ["RC4-MD5", "TLSv1/SSLv3", 128, 128], ["EDH-RSA-DES-CBC-SHA", "TLSv1/SSLv3", 56, 56], ["EDH-DSS-DES-CBC-SHA", "TLSv1/SSLv3", 56, 56], ["DES-CBC-SHA", "TLSv1/SSLv3", 56, 56], ["EXP-EDH-RSA-DES-CBC-SHA", "TLSv1/SSLv3", 40, 56], ["EXP-EDH-DSS-DES-CBC-SHA", "TLSv1/SSLv3", 40, 56], ["EXP-DES-CBC-SHA", "TLSv1/SSLv3", 40, 56], ["EXP-RC2-CBC-MD5", "TLSv1/SSLv3", 40, 128], ["EXP-RC4-MD5", "TLSv1/SSLv3", 40, 128]]

    ssl_opts = Stomp::SSLParams.new(:ciphers => ciphers_list)

    #
    # SSL Use Case 1
    #
    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 1"
    c = Stomp::Connection.new(hash)
    puts "Connect completed"
    puts "SSL Verify Result: #{ssl_opts.verify_result}"
    #
    c.disconnect
  end
end
#
e = ExampleSSL1C.new
e.run

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
stomp-1.4.1 examples/ssl_uc1_ciphers.rb
stomp-1.4.0 examples/ssl_uc1_ciphers.rb
stomp-1.3.5 examples/ssl_uc1_ciphers.rb
stomp-1.3.4 examples/ssl_uc1_ciphers.rb
stomp-1.3.3 examples/ssl_uc1_ciphers.rb
stomp-1.3.2 examples/ssl_uc1_ciphers.rb
stomp-1.3.1 examples/ssl_uc1_ciphers.rb
stomp-1.3.0 examples/ssl_uc1_ciphers.rb
stomp-1.2.16 examples/ssl_uc1_ciphers.rb
stomp-1.2.14 examples/ssl_uc1_ciphers.rb
stomp-1.2.13 examples/ssl_uc1_ciphers.rb
stomp-1.2.12 examples/ssl_uc1_ciphers.rb
stomp-1.2.11 examples/ssl_uc1_ciphers.rb
stomp-1.2.10 examples/ssl_uc1_ciphers.rb