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/src/herumi/privateKey.ts

51 lines
1.4 KiB
TypeScript
Raw Normal View History

2020-11-19 13:22:41 +00:00
import assert from "assert";
2020-11-25 11:39:49 +00:00
import {SecretKeyType} from "bls-eth-wasm";
2020-11-19 13:22:41 +00:00
import {generateRandomSecretKey} from "@chainsafe/bls-keygen";
import {SECRET_KEY_LENGTH} from "../constants";
import {getContext} from "./context";
import {PublicKey} from "./publicKey";
import {Signature} from "./signature";
import {bytesToHex, hexToBytes} from "../helpers/utils";
2020-11-20 19:03:17 +00:00
import {IPrivateKey} from "../interface";
2020-11-19 13:22:41 +00:00
2020-11-20 19:03:17 +00:00
export class PrivateKey implements IPrivateKey {
2020-11-19 13:22:41 +00:00
readonly value: SecretKeyType;
constructor(value: SecretKeyType) {
this.value = value;
}
static fromBytes(bytes: Uint8Array): PrivateKey {
assert(bytes.length === SECRET_KEY_LENGTH, "Private key should have 32 bytes");
const context = getContext();
const secretKey = new context.SecretKey();
secretKey.deserialize(Buffer.from(bytes));
return new PrivateKey(secretKey);
}
static fromHex(hex: string): PrivateKey {
return this.fromBytes(hexToBytes(hex));
}
static fromKeygen(entropy?: Uint8Array): PrivateKey {
const sk = generateRandomSecretKey(entropy && Buffer.from(entropy));
return this.fromBytes(sk);
2020-11-19 13:22:41 +00:00
}
signMessage(message: Uint8Array): Signature {
return new Signature(this.value.sign(message));
}
toPublicKey(): PublicKey {
return new PublicKey(this.value.getPublicKey());
}
toBytes(): Buffer {
return Buffer.from(this.value.serialize());
}
toHex(): string {
return bytesToHex(this.toBytes());
}
}