/** The params that control scrypt generation */
export interface ScryptParams {
    N: number;
    p: number;
    r: number;
}
