mirror of
https://github.com/umami-software/umami.git
synced 2026-02-08 06:37:18 +01:00
Cookie authentication.
This commit is contained in:
parent
0edf87941a
commit
5219582803
6 changed files with 337 additions and 29 deletions
31
lib/crypto.js
Normal file
31
lib/crypto.js
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
import crypto from 'crypto';
|
||||
import { v5 as uuid, v4 } from 'uuid';
|
||||
import Cryptr from 'cryptr';
|
||||
|
||||
const UUID_REGEX = /^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$/;
|
||||
|
||||
const cryptr = new Cryptr(hash(process.env.HASH_SALT, process.env.DATABASE_URL));
|
||||
|
||||
export function md5(s) {
|
||||
return crypto.createHash('md5').update(s).digest('hex');
|
||||
}
|
||||
|
||||
export function hash(...args) {
|
||||
return uuid(args.join(''), md5(process.env.HASH_SALT));
|
||||
}
|
||||
|
||||
export function validHash(s) {
|
||||
return UUID_REGEX.test(s);
|
||||
}
|
||||
|
||||
export function encrypt(s) {
|
||||
return cryptr.encrypt(s);
|
||||
}
|
||||
|
||||
export function decrypt(s) {
|
||||
return cryptr.decrypt(s);
|
||||
}
|
||||
|
||||
export function random() {
|
||||
return v4();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue