Added missing salt.

This commit is contained in:
Mike Cao 2023-10-20 13:54:03 -07:00
parent 140cac046b
commit f175534f51
3 changed files with 6 additions and 6 deletions

View File

@ -93,7 +93,7 @@
"maxmind": "^4.3.6",
"moment-timezone": "^0.5.35",
"next": "13.5.3",
"next-basics": "^0.36.0",
"next-basics": "^0.37.0",
"node-fetch": "^3.2.8",
"npm-run-all": "^4.1.5",
"prisma": "5.3.1",

View File

@ -15,7 +15,7 @@ export function salt() {
export function uuid(...args) {
if (!args.length) return v4();
return v5(hash(...args), v5.DNS);
return v5(hash(...args, salt()), v5.DNS);
}
export function isUuid(value) {

View File

@ -6294,10 +6294,10 @@ natural-compare@^1.4.0:
resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
next-basics@^0.36.0:
version "0.36.0"
resolved "https://registry.yarnpkg.com/next-basics/-/next-basics-0.36.0.tgz#b1675c3f2b98df2fec8df605095dab7d17f9dc7b"
integrity sha512-Nwou8pCjFuoD/ZxUw9iKC7hhZeWbo/ng0ze74yck3W89MNc/CepwCDziflAHY5XcmIVNmpXOCu9OfmzTdVRPWQ==
next-basics@^0.37.0:
version "0.37.0"
resolved "https://registry.yarnpkg.com/next-basics/-/next-basics-0.37.0.tgz#4de96040ab38bf3fdfb6fc1aa09cba7719a81d5c"
integrity sha512-HnEFc7MFa/dXL0u4oPYqZ9myFBQTxNmCxh4P8qghZ0pKtSFd5FQ7+CqVmakVV+CfrGAORi4k2lW3EpWU8/YwgQ==
dependencies:
bcryptjs "^2.4.3"
jsonwebtoken "^9.0.0"