Compare commits

..

2 Commits

Author SHA1 Message Date
Barcode Betty 9ba745b5a9 fix: increase bcrypt cost factor from 10 to 12
Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-15 21:50:09 +00:00
Barcode Betty c13e640864 fix: add Grype CVE ignores and cache-bust Debian apt-get upgrade layers
Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-15 21:50:09 +00:00
+1 -1
View File
@@ -37,7 +37,7 @@ export const auth = betterAuth({
maxPasswordLength: 128, maxPasswordLength: 128,
password: { password: {
hash: async (password: string) => { hash: async (password: string) => {
return bcrypt.hash(password, 10); return bcrypt.hash(password, 12);
}, },
verify: async (data: { hash: string; password: string }) => { verify: async (data: { hash: string; password: string }) => {
return bcrypt.compare(data.password, data.hash); return bcrypt.compare(data.password, data.hash);