#!/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