Sha256: 4cbada83a8b3c7921d5f7789ef212fc41776206877c9bcbbe4df10060597298a
Contents?: true
Size: 425 Bytes
Versions: 7
Compression:
Stored size: 425 Bytes
Contents
if RUBY_VERSION >= '1.9' require 'cover_me' at_exit do CoverMe.complete! end end require 'rspec' require 'openid_connect' require 'helpers/webmock_helper' def rsa @rsa ||= OpenSSL::PKey::RSA.generate 2048 end def public_key @public_key ||= rsa.public_key end def private_key @private_key ||= OpenSSL::PKey::RSA.new rsa.export(OpenSSL::Cipher::Cipher.new('DES-EDE3-CBC'), 'pass-phrase'), 'pass-phrase' end
Version data entries
7 entries across 7 versions & 1 rubygems