Sha256: 30ea28793c20e0453e781704f2b23570ca1461d173699ec44978e1196979f0bf
Contents?: true
Size: 276 Bytes
Versions: 5
Compression:
Stored size: 276 Bytes
Contents
# encoding: binary describe RbNaCl::Random do it "produces random bytes" do RbNaCl::Random.random_bytes(16).bytesize.should == 16 end it "produces different random bytes" do RbNaCl::Random.random_bytes(16).should_not == RbNaCl::Random.random_bytes(16) end end
Version data entries
5 entries across 5 versions & 1 rubygems