mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-08-02 16:55:40 +00:00
6 lines
229 B
TypeScript
6 lines
229 B
TypeScript
/**
|
|
* @name sr25519Agreement
|
|
* @description Key agreement between other's public key and self secret key
|
|
*/
|
|
export declare function sr25519Agreement(secretKey: string | Uint8Array, publicKey: string | Uint8Array): Uint8Array;
|