aboutsummaryrefslogtreecommitdiffstats
path: root/test/openssl/test_fips.rb
blob: 33769c9388f97bc5e3817ecfd7d1ee8910db2132 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: false
require_relative 'utils'

if defined?(OpenSSL::TestUtils)

class OpenSSL::TestFIPS < Test::Unit::TestCase

  def test_fips_mode_is_reentrant
    OpenSSL.fips_mode = false
    OpenSSL.fips_mode = false
  end

end

end