Commit 4a2d37e
Changed files (2)
lib
saml
kit
exe/saml-kit-create-self-signed-certificate
@@ -1,6 +1,7 @@
#!/usr/bin/env ruby
require 'saml/kit'
+puts "Enter Password:"
password = STDIN.read.strip
certificate, private_key = Saml::Kit::SelfSignedCertificate.new(password).create
lib/saml/kit/assertion.rb
@@ -1,7 +1,7 @@
module Saml
module Kit
class Assertion
- def initialize(xml_hash, configuration: configuration)
+ def initialize(xml_hash, configuration:)
@xml_hash = xml_hash
@configuration = configuration
end