export declare const encrypt: (data: Uint8Array, keyStr: string) => Promise; export declare const decrypt: (encrypted: Uint8Array, keyStr: string) => Promise; export declare const genKeyStr: () => Promise; export declare const decryptGCM: (encrypted: string, keyStr: string, ivStr: string) => Promise; export declare const sha256: (bytes: Uint8Array) => Promise; export declare const rsaVerify: (message: Uint8Array, signature: Uint8Array, publicKey: Uint8Array) => Promise; export declare const ed25519Verify: (message: Uint8Array, signature: Uint8Array, publicKey: Uint8Array) => Promise; export declare const ksPublicReadKey: () => Promise; export declare const ksPublicWriteKey: () => Promise; export declare const ksDecrypt: (encrypted: string) => Promise; export declare const ksSign: (message: string, charSize: number) => Promise; export declare const ksImportSymmKey: (key: string, name: string) => Promise; export declare const ksExportSymmKey: (name: string) => Promise; export declare const ksKeyExists: (name: string) => Promise; export declare const ksGetAlg: () => Promise; export declare const ksClear: () => Promise;