mirror of
https://github.com/inspec/inspec
synced 2024-11-10 23:24:18 +00:00
a278ae921b
Bug Fix #2865 * Defining an attribute without a default value generates a stacktrace * Fix string quotes * Moved logic out of the initilize method. * Refactoring for better clarity. * Fixing trailing white spaces Signed-off-by: Omar J Irizarry <irizarry_omar_j@network.lilly.com>
63 lines
1.3 KiB
Ruby
63 lines
1.3 KiB
Ruby
# encoding: utf-8
|
|
|
|
require 'openssl'
|
|
require 'hashie/mash'
|
|
require 'utils/file_reader'
|
|
require 'utils/pkey_reader'
|
|
|
|
module Inspec::Resources
|
|
class RsaKey < Inspec.resource(1)
|
|
name 'key_rsa'
|
|
supports platform: 'unix'
|
|
supports platform: 'windows'
|
|
desc 'public/private RSA key pair test'
|
|
example "
|
|
describe key_rsa('/etc/pki/www.mywebsite.com.key') do
|
|
its('public_key') { should match /BEGIN RSA PUBLIC KEY/ }
|
|
end
|
|
|
|
describe key_rsa('/etc/pki/www.mywebsite.com.key', 'passphrase') do
|
|
it { should be_private }
|
|
it { should be_public }
|
|
end
|
|
"
|
|
|
|
include FileReader
|
|
include PkeyReader
|
|
|
|
def initialize(keypath, passphrase = nil)
|
|
@key_path = keypath
|
|
@passphrase = passphrase
|
|
@key = read_pkey(read_file_content(@key_path, allow_empty: true), @passphrase)
|
|
end
|
|
|
|
def public?
|
|
return if @key.nil?
|
|
@key.public?
|
|
end
|
|
|
|
def public_key
|
|
return if @key.nil?
|
|
@key.public_key.to_s
|
|
end
|
|
|
|
def private?
|
|
return if @key.nil?
|
|
@key.private?
|
|
end
|
|
|
|
def private_key
|
|
return if @key.nil?
|
|
@key.to_s
|
|
end
|
|
|
|
def key_length
|
|
return if @key.nil?
|
|
@key.public_key.n.num_bytes * 8
|
|
end
|
|
|
|
def to_s
|
|
"rsa_key #{@key_path}"
|
|
end
|
|
end
|
|
end
|