mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.crypto: Fix tests
Found this number in a hat. Sleepy time. Good night.
This commit is contained in:
parent
5ca81b0e3b
commit
70e54affa0
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue