LetsEncrypt
This commit is contained in:
7
auth/cretePassword.js
Executable file
7
auth/cretePassword.js
Executable file
@@ -0,0 +1,7 @@
|
||||
import bcrypt from "bcrypt";
|
||||
|
||||
const password = process.argv[2];
|
||||
|
||||
bcrypt.hash(password, 12).then(hash=>{
|
||||
console.log(hash);
|
||||
});
|
||||
Reference in New Issue
Block a user