You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <reference types="node" />declare module "@phc/argon2"{typePHCstring=string;namespaceArgon2{/** * Gets the list of all identifiers supported by this hashing function. */functionidentifiers(): string[];/** * Computes the hash string of the given password in the PHC format using argon2 package. * @returns a hash with the PHC string format (see https://github.com/P-H-C/phc-string-format/blob/master/phc-sf-spec.md) */functionhash(password: string,options?: {[key: string]: any}): Promise<PHCstring>;/** * Determines whether or not the hash stored inside the PHC formatted string matches the hash generated for the password provided. */functionverify(phcString: PHCstring,password: string): Promise<boolean>;}export=Argon2;}
No description provided.
The text was updated successfully, but these errors were encountered: