This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
chainsafe-bls/test/spec/sign.test.ts

36 lines
895 B
TypeScript
Raw Normal View History

2020-02-26 08:19:15 +00:00
import path from "path";
2020-11-05 20:55:25 +00:00
import bls, {initBLS} from "../../src";
import {describeDirectorySpecTest, InputType} from "@chainsafe/lodestar-spec-test-util";
2020-02-26 08:19:15 +00:00
interface ISignMessageTestCase {
data: {
input: {
privkey: string;
message: string;
};
output: string;
};
}
before(async function f() {
await initBLS();
});
describeDirectorySpecTest<ISignMessageTestCase, string>(
"BLS - sign",
2020-11-05 20:55:25 +00:00
path.join(__dirname, "../../node_modules/@chainsafe/eth2-spec-tests/tests/general/phase0/bls/sign/small"),
2020-11-04 17:40:36 +00:00
(testCase) => {
const signature = bls.sign(
2020-02-26 08:19:15 +00:00
Buffer.from(testCase.data.input.privkey.replace("0x", ""), "hex"),
Buffer.from(testCase.data.input.message.replace("0x", ""), "hex")
);
return `0x${signature.toString("hex")}`;
2020-11-04 17:40:36 +00:00
},
2020-02-26 08:19:15 +00:00
{
inputTypes: {
data: InputType.YAML,
},
2020-11-04 17:40:36 +00:00
getExpected: (testCase) => testCase.data.output,
2020-02-26 08:19:15 +00:00
}
);