mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-01 19:32:27 +08:00
feature (admin): admin console
This commit is contained in:
@ -1,4 +1,6 @@
|
||||
import crypto from 'crypto';
|
||||
import bcrypt from 'bcryptjs';
|
||||
|
||||
const algorithm = 'aes-256-cbc';
|
||||
|
||||
export function encrypt(obj, key){
|
||||
@ -11,3 +13,12 @@ export function decrypt(text, key){
|
||||
var decipher = crypto.createDecipher(algorithm, key)
|
||||
return JSON.parse(decipher.update(text,'base64','utf8') + decipher.final('utf8'));
|
||||
}
|
||||
|
||||
export function bcrypt_password(password) {
|
||||
return new Promise((done, error) => {
|
||||
bcrypt.hash(password, 10, (err, hash) => {
|
||||
if(err) return error(err)
|
||||
done(hash);
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user