Sha256: 28142e386c8be8c3f68783d81d4992ed61f0b402790e678b7d492209fb67d6a4

Contents?: true

Size: 1.49 KB

Versions: 2

Compression:

Stored size: 1.49 KB

Contents

# encoding: utf-8

require 'openssl'
require 'hashie/mash'

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
    "

    def initialize(keypath, passphrase = nil)
      @key_path = keypath
      @key_file = inspec.file(@key_path)
      @key = nil
      @passphrase = passphrase

      return skip_resource "Unable to find key file #{@key_path}" unless @key_file.exist?

      begin
        @key = OpenSSL::PKey.read(@key_file.content, @passphrase)
      rescue OpenSSL::PKey::RSAError => _
        return skip_resource "Unable to load key file #{@key_path}"
      end
    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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
inspec-2.0.32 lib/resources/key_rsa.rb
inspec-2.0.17 lib/resources/key_rsa.rb