@signumjs/crypto
Version:
Cryptographic functions for building Signum Network apps.
28 lines (27 loc) • 584 B
TypeScript
/**
* Original work Copyright (c) 2018 PoC-Consortium
* Modified work Copyright (c) 2019 Burst Apps Team
* Modified work Copyright (c) 2024 Signum Network
*/
/**
* Sign Keys interface
*
* The Keys class is used to encompass keys associated to an account.
*
*
* @category signing
*/
export interface SignKeys {
/**
* The private key used for P2P message encryption
*/
agreementPrivateKey: string;
/**
* The public key
*/
publicKey: string;
/**
* The private key used for transaction signing
*/
signPrivateKey: string;
}