Sha256: 877d7041aa0ec28e808f1f796ce5a1f2ebcc9bbe283468bd22662411399e2471

Contents?: true

Size: 400 Bytes

Versions: 5

Compression:

Stored size: 400 Bytes

Contents

# encoding: binary
# frozen_string_literal: true

RSpec.describe RbNaCl::HMAC::SHA512256 do
  let(:key)       { vector :auth_hmac_key }
  let(:message)   { vector :auth_message }
  let(:tag)       { vector :auth_hmacsha512256_tag }
  let(:mult_tag)  { vector :auth_hmacsha512256_mult_tag }
  let(:wrong_key) { "key".encode("utf-8") }

  include_examples "HMAC"
  include_examples "authenticator"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rbnacl-7.1.1 spec/rbnacl/hmac/sha512256_spec.rb
rbnacl-7.1.0 spec/rbnacl/hmac/sha512256_spec.rb
rbnacl-7.0.0 spec/rbnacl/hmac/sha512256_spec.rb
rbnacl-6.0.1 spec/rbnacl/hmac/sha512256_spec.rb
rbnacl-6.0.0 spec/rbnacl/hmac/sha512256_spec.rb