resolve typedoc

This commit is contained in:
danisharora099 2023-08-17 22:19:58 +05:30
parent e6bed26f10
commit 8c00c67979
No known key found for this signature in database
GPG Key ID: FBD2BF500037F135

View File

@ -1,7 +1,7 @@
import nodeCrypto from "crypto";
import {
getPublicKey,
getPublicKey as secpGetPublicKey,
sign as secpSign,
etc as secpUtils
} from "@noble/secp256k1";
@ -48,7 +48,7 @@ export function generateSymmetricKey(): Uint8Array {
* Return the public key for the given private key, to be used for asymmetric
* encryption.
*/
export { getPublicKey };
export const getPublicKey = secpGetPublicKey;
/**
* ECDSA Sign a message with the given private key.