mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.crypto: Add more ECC methods
pkey_meth_derive: to derive a shared symmetric key from two ECC keys pkey_meth_public_raw: to get the raw form of the public key import_public_ec_raw: to import the raw form of the public key generate_p256_keypair: key generation for the P-256 curve
This commit is contained in:
parent
25754509f4
commit
d477528e67
2 changed files with 137 additions and 0 deletions
|
@ -3,6 +3,7 @@ local test_keys = require "spec.inputs.test_keys";
|
|||
describe("util.crypto", function ()
|
||||
local crypto = require "util.crypto";
|
||||
local random = require "util.random";
|
||||
local encodings = require "util.encodings";
|
||||
|
||||
describe("generate_ed25519_keypair", function ()
|
||||
local keypair = crypto.generate_ed25519_keypair();
|
||||
|
@ -10,6 +11,26 @@ describe("util.crypto", function ()
|
|||
assert.equal("ED25519", keypair:get_type());
|
||||
end)
|
||||
|
||||
describe("generate_p256_keypair", function ()
|
||||
local keypair = crypto.generate_p256_keypair();
|
||||
assert.is_not_nil(keypair);
|
||||
assert.equal("id-ecPublicKey", keypair:get_type());
|
||||
end)
|
||||
|
||||
describe("export/import raw", function ()
|
||||
local keypair = crypto.generate_p256_keypair();
|
||||
assert.is_not_nil(keypair);
|
||||
local raw = keypair:public_raw()
|
||||
local imported = crypto.import_public_ec_raw(raw, "P-256")
|
||||
assert.equal(keypair:public_pem(), imported:public_pem());
|
||||
end)
|
||||
|
||||
describe("derive", function ()
|
||||
local key = crypto.import_private_pem(test_keys.ecdsa_private_pem);
|
||||
local peer_key = crypto.import_public_pem(test_keys.ecdsa_public_pem);
|
||||
assert.equal("n1v4KeKmOVwjC67fiKtjJnqcEaasbpZa2fLPNHW51co=", encodings.base64.encode(key:derive(peer_key)))
|
||||
end)
|
||||
|
||||
describe("import_private_pem", function ()
|
||||
it("can import ECDSA keys", function ()
|
||||
local ecdsa_key = crypto.import_private_pem(test_keys.ecdsa_private_pem);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue