Sha256: d99b4f1aa43bc56a11e9f55c3471cec0fbecd0fa6392d3ed49ef0c0d9e7d9198

Contents?: true

Size: 456 Bytes

Versions: 5

Compression:

Stored size: 456 Bytes

Contents

#!/usr/bin/env ruby
require 'saml/kit'

puts "Enter Passphrase:"
passphrase = STDIN.read.strip
certificate, private_key = Saml::Kit::SelfSignedCertificate.new(passphrase).create

puts "** BEGIN File Format **"
print certificate
puts private_key
puts "***********************"

puts

puts "*** BEGIN ENV Format **"
puts certificate.inspect
puts private_key.inspect
puts "***********************"

puts
puts "Private Key Passphrase:"
puts passphrase.inspect

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
saml-kit-0.3.0 exe/saml-kit-create-self-signed-certificate
saml-kit-0.2.18 exe/saml-kit-create-self-signed-certificate
saml-kit-0.2.17 exe/saml-kit-create-self-signed-certificate
saml-kit-0.2.16 exe/saml-kit-create-self-signed-certificate
saml-kit-0.2.15 exe/saml-kit-create-self-signed-certificate