aboutsummaryrefslogtreecommitdiffstats
path: root/test/openssl/test_fips.rb
blob: a4ab87f3841b0ebe6782cc0d0147615ae21ef619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: false
require_relative 'utils'

if defined?(OpenSSL)

class OpenSSL::TestFIPS < OpenSSL::TestCase
  def test_fips_mode_is_reentrant
    OpenSSL.fips_mode = false
    OpenSSL.fips_mode = false
  end

  def test_fips_mode_get
    if OpenSSL::OPENSSL_FIPS
      OpenSSL.fips_mode = true
      assert OpenSSL.fips_mode == true, ".fips_mode returns true when .fips_mode=true"

      OpenSSL.fips_mode = false
      assert OpenSSL.fips_mode == false, ".fips_mode returns false when .fips_mode=false"
    end
  end
end

end