aboutsummaryrefslogtreecommitdiffstats
path: root/test/openssl/test_random.rb
blob: defa09dd7592c0c1c4bb3d425bf6050d38a7db8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: false
begin
  require "openssl"
rescue LoadError
end

class OpenSSL::TestRandom < OpenSSL::TestCase
  def test_random_bytes
    assert_equal("", OpenSSL::Random.random_bytes(0))
    assert_equal(12, OpenSSL::Random.random_bytes(12).bytesize)
  end

  def test_pseudo_bytes
    assert_equal("", OpenSSL::Random.pseudo_bytes(0))
    assert_equal(12, OpenSSL::Random.pseudo_bytes(12).bytesize)
  end
end if defined?(OpenSSL::Random)