UNPKG

meru-stablecoin-lib

Version:

A comprehensive TypeScript library for stablecoin operations including encryption utilities, error handling, and validation tools

13 lines 481 B
export declare class EncryptionUtil { private static HMAC_ALGORITHM; private static ENCRYPTION_KEY; static generateApiKeys: () => { publicKey: string; secretKey: string; hashedSecret: string; }; static createSignature(payload: string, secretKey: string): string; static verifySignature(secretKey: string, encryptedPrivateKey: string): boolean; static encrypt(text: string): string; } //# sourceMappingURL=encryption.util.d.ts.map