HomeVendure CoreMoreMoreAuthBcryptPasswordHashingStrategyOn this pageBcryptPasswordHashingStrategy@vendure/coreSourcev1.3.0 A hashing strategy which uses bcrypt (https://en.wikipedia.org/wiki/Bcrypt) to hash plaintext password strings. Signatureclass BcryptPasswordHashingStrategy implements PasswordHashingStrategy { hash(plaintext: string) => Promise<string>; check(plaintext: string, hash: string) => Promise<boolean>;} Implements: PasswordHashingStrategy hashmethod(plaintext: string) => Promise<string>checkmethod(plaintext: string, hash: string) => Promise<boolean>Was this chapter helpful?It was helpfulIt wasn't helpfulReport IssuePreviousAuthOptionsNextCookieOptionsEdited Jan 28, 2026ยทEdit this page