export declare const OLD_PASSWORD_MAX_LENGTH = 512; export declare const NEW_PASSWORD_MAX_LENGTH = 256; export declare const genSaltAndHash: (password: string) => Promise; export declare const hashWithSalt: (password: string, salt: string) => Promise; export declare const verify: (password: string, storedHash: string) => Promise; export declare const getDerivedHash: (password: string, salt: string) => Promise; export declare const hashAppPassword: (did: string, password: string) => Promise; //# sourceMappingURL=scrypt.d.ts.map