Docs: Update benchmark for google/gemini-3.1-flash-lite

This commit is contained in:
github-actions[bot]
2026-05-18 03:02:46 +00:00
parent 542af993bf
commit ebeee1ab97
12 changed files with 349 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
async function hashPassword(password, salt) {
const { scrypt } = await import('https://esm.run/scrypt-js');
const enc = new TextEncoder();
const key = await scrypt(
enc.encode(password),
enc.encode(salt),
1024, 8, 1, 32
);
return [...key].map(b => b.toString(16).padStart(2, '0')).join('');
}
export default hashPassword;
// Generation time: 1.123s
// Result: PASS