From 70e54affa0d780922bd68bc12d411d59c4dbcf81 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Fri, 30 Sep 2022 00:27:10 +0200 Subject: util.crypto: Fix tests Found this number in a hat. Sleepy time. Good night. --- spec/util_crypto_spec.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'spec') diff --git a/spec/util_crypto_spec.lua b/spec/util_crypto_spec.lua index 0d7a7ffb..152efed5 100644 --- a/spec/util_crypto_spec.lua +++ b/spec/util_crypto_spec.lua @@ -117,7 +117,7 @@ describe("util.crypto", function () 6b0cd1043718ffc31c153b971d213a8e ]]):gsub("%s+", ""))); it("can be parsed", function () - local r, s = crypto.parse_ecdsa_signature(sig); + local r, s = crypto.parse_ecdsa_signature(sig, 32); assert.is_string(r); assert.is_string(s); assert.equal(32, #r); @@ -134,13 +134,13 @@ describe("util.crypto", function () string.rep("\255", 3); }; for _, invalid_sig in ipairs(invalid_sigs) do - local r, s = crypto.parse_ecdsa_signature(invalid_sig); + local r, s = crypto.parse_ecdsa_signature(invalid_sig, 32); assert.is_nil(r); assert.is_nil(s); end end); it("can be built", function () - local r, s = crypto.parse_ecdsa_signature(sig); + local r, s = crypto.parse_ecdsa_signature(sig, 32); local rebuilt_sig = crypto.build_ecdsa_signature(r, s); assert.equal(sig, rebuilt_sig); end); -- cgit v1.2.3