UNPKG

steem-auth-vue-temp

Version:

A Vue 3 authentication component for Steem blockchain and Echelon sidechain

9 lines (8 loc) 353 B
declare class EncryptionService { static get encryptionKey(): CryptoKey | null; generateEncryptionKey(username: string, password: string): Promise<CryptoKey>; encryptAndStorePrivateKey(privateKey: string): Promise<void>; decryptPrivateKey(): Promise<string>; } declare const _default: EncryptionService; export default _default;