Reduce duplicate code, move shit out to common package
This commit is contained in:
7
src/utils/password/encrypt.ts
Normal file
7
src/utils/password/encrypt.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { pbkdf2Sync, randomBytes } from 'crypto';
|
||||
|
||||
export const encrypt = (password: string) => {
|
||||
const salt = randomBytes(16).toString('hex');
|
||||
const hash = pbkdf2Sync(password, salt, 10000, 512, 'sha512').toString('hex');
|
||||
return `${salt}:${hash}`;
|
||||
};
|
||||
Reference in New Issue
Block a user