0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

Add password encryption salt

This commit is contained in:
Gao Sun 2021-07-03 17:44:03 +08:00
parent e2301a75de
commit 70a4c6f15a
No known key found for this signature in database
GPG key ID: 0F0EFA2E36639F31
2 changed files with 3 additions and 0 deletions

View file

@ -7,6 +7,7 @@ export type UserDBEntry = {
primaryPhone?: string;
passwordEncrypted?: string;
passwordEncryptionMethod?: string;
passwordEncryptionSalt?: string;
};
export const Users = Object.freeze({
@ -18,5 +19,6 @@ export const Users = Object.freeze({
primaryPhone: 'primary_phone',
passwordEncrypted: 'password_encrypted',
passwordEncryptionMethod: 'password_encryption_method',
passwordEncryptionSalt: 'password_encryption_salt',
},
} as const);

View file

@ -5,5 +5,6 @@ create table users (
primary_phone varchar(128) unique,
password_encrypted varchar(128),
password_encryption_method varchar(32),
password_encryption_salt varchar(128),
primary key (id)
);