Skip to content

Commit d3e6c32

Browse files
author
Nikos Polykandriotis
authored
feat(backend): Add support for md5_phpass and ldap_ssha hashers (#5583)
1 parent 48438b4 commit d3e6c32

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.changeset/busy-ducks-strive.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/backend': patch
3+
---
4+
5+
Add support for phpass_md5 and ldap_ssha hashers

packages/backend/src/api/endpoints/UserApi.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ type PasswordHasher =
6464
| 'phpass'
6565
| 'scrypt_firebase'
6666
| 'scrypt_werkzeug'
67-
| 'sha256';
67+
| 'sha256'
68+
| 'md5_phpass'
69+
| 'ldap_ssha';
6870

6971
type UserPasswordHashingParams = {
7072
passwordDigest: string;

0 commit comments

Comments
 (0)