Optional ikm param for bls.PrivateKey.fromKeygen
This commit is contained in:
parent
138b6de063
commit
d743d95487
|
@ -2,7 +2,7 @@ export interface IBls {
|
|||
PrivateKey: {
|
||||
fromBytes(bytes: Uint8Array): IPrivateKey;
|
||||
fromHex(hex: string): IPrivateKey;
|
||||
fromKeygen(): IPrivateKey;
|
||||
fromKeygen(ikm?: Uint8Array): IPrivateKey;
|
||||
};
|
||||
PublicKey: {
|
||||
fromBytes(bytes: Uint8Array): IPublicKey;
|
||||
|
|
Reference in New Issue