Docs: Update benchmark for google/gemini-3.8-flash EFF:high

This commit is contained in:
github-actions[bot]
2026-09-08 14:30:30 +00:00
parent 16a6e49ab2
commit aab29b41d9
12 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
export async function hashPassword(password, salt) {
const { scrypt } = await import('https://esm.sh/scrypt-js@3.0.1');
const enc = new TextEncoder();
const hash = await scrypt(
enc.encode(password),
enc.encode(salt),
1024,
8,
1,
32
);
return Array.from(hash, (b) => b.toString(16).padStart(2, '0')).join('');
}
export default hashPassword;
// Generation time: 13.651s
// Result: PASS