mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 06:47:57 +00:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import type { ScryptParams } from './types.js';
|
|
interface Result {
|
|
params: ScryptParams;
|
|
salt: Uint8Array;
|
|
}
|
|
export declare function scryptFromU8a(data: Uint8Array): Result;
|
|
export {};
|