mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-06 17:35:45 +01:00
13 lines
313 B
JavaScript
13 lines
313 B
JavaScript
import { startOfMonth } from 'date-fns';
|
|
import { hash } from 'next-basics';
|
|
|
|
export function secret() {
|
|
return hash(process.env.APP_SECRET || process.env.DATABASE_URL);
|
|
}
|
|
|
|
export function salt() {
|
|
const ROTATING_SALT = hash(startOfMonth(new Date()).toUTCString());
|
|
|
|
return hash(secret(), ROTATING_SALT);
|
|
}
|