From 731a3d7a4cbd4dc00671464cbb3657e11d59aca6 Mon Sep 17 00:00:00 2001 From: Didactic Drunk <1479616+didactic-drunk@users.noreply.github.com> Date: Sun, 30 Jun 2019 07:20:04 -0700 Subject: [PATCH] Remove old test vectors. --- spec/sodium/digest/blake2b_spec.cr | 8 -------- 1 file changed, 8 deletions(-) diff --git a/spec/sodium/digest/blake2b_spec.cr b/spec/sodium/digest/blake2b_spec.cr index cf8c5ba..11d0643 100644 --- a/spec/sodium/digest/blake2b_spec.cr +++ b/spec/sodium/digest/blake2b_spec.cr @@ -29,14 +29,6 @@ more_vectors = Array(Hash(String, String | Int32)).from_json(buf).map do |h| end describe Sodium::Digest::Blake2b do - it "libsodium comparisons" do - libsodium_comparisons.each do |vec| - d = Sodium::Digest::Blake2b.new vec[:out_size], key: vec[:key].try(&.hexbytes) - d.update vec[:input].hexbytes - d.hexdigest.should eq vec[:output] - end - end - it "test vectors" do test_vectors.each do |vec| d = Sodium::Digest::Blake2b.new 64, key: vec[:key].hexbytes