did-jwt
Version:
Library for Signing and Verifying JWTs that use DIDs as issuers and JWEs that use DIDs as recipients
22 lines • 781 B
TypeScript
import type { Signer } from '../JWT.js';
/**
* @deprecated Please use EdDSASigner
*
* The NaclSigner returns a configured function for signing data using the Ed25519 algorithm.
*
* The signing function itself takes the data as a `string` or `Uint8Array` parameter and returns a
* `base64Url`-encoded signature.
*
* @example
* const signer = NaclSigner(process.env.PRIVATE_KEY)
* const data: string = '...'
* signer(data).then( (signature: string) => {
* ...
* })
*
* @param {String} base64PrivateKey a 64 byte base64 encoded private key
* @return {Function} a configured signer function
*/
declare function NaclSigner(base64PrivateKey: string): Signer;
export default NaclSigner;
//# sourceMappingURL=NaclSigner.d.ts.map