This commit is contained in:
Benoit Daloze 2023-10-30 16:44:54 +01:00
parent b09618e566
commit 7d8cfa0a40

View File

@ -1,6 +1,7 @@
require_relative '../../../spec_helper'
require 'openssl'
guard -> { OpenSSL::OPENSSL_VERSION_NUMBER >= 0x10100000 } do
describe "OpenSSL::KDF.scrypt" do
before :each do
@defaults = {
@ -205,3 +206,4 @@ describe "OpenSSL::KDF.scrypt" do
}.should raise_error(ArgumentError, "negative string size (or size too big)")
end
end
end