class Serverspec::Type::X509PrivateKey
Public Instance Methods
encrypted?()
click to toggle source
# File lib/serverspec/type/x509_private_key.rb, line 10 def encrypted? @runner.run_command("grep -wq \"^Proc-Type.*ENCRYPTED$\" #{name}").exit_status == 0 end
has_matching_certificate?(cert_file)
click to toggle source
# File lib/serverspec/type/x509_private_key.rb, line 14 def has_matching_certificate?(cert_file) mac_op = "openssl sha -sha512" h1 = @runner.run_command("openssl x509 -noout -modulus -in #{cert_file} | #{mac_op}") h2 = @runner.run_command("openssl rsa -noout -modulus -in #{name} | #{mac_op}") (h1.stdout == h2.stdout) && (h1.exit_status == 0) && (h2.exit_status == 0) end
valid?()
click to toggle source
# File lib/serverspec/type/x509_private_key.rb, line 5 def valid? runner_res = @runner.run_command("openssl rsa -in #{name} -check -noout") ( runner_res.exit_status == 0 && runner_res.stdout.chomp == 'RSA key ok' ) end