UNPKG

229 BTypeScriptView Raw
1/**
2 * @name sr25519Agreement
3 * @description Key agreement between other's public key and self secret key
4 */
5export declare function sr25519Agreement(secretKey: string | Uint8Array, publicKey: string | Uint8Array): Uint8Array;