Docs: Update benchmark for openai/gpt-5.6-luna EFF:high

This commit is contained in:
github-actions[bot]
2026-07-13 19:22:15 +00:00
parent c2950d20e7
commit 302f129522
12 changed files with 882 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
async function hashPassword(password, salt) {
const scryptModule = await import(
"https://cdn.jsdelivr.net/npm/scrypt-js@3.0.1/+esm"
);
const scrypt = scryptModule.default ?? scryptModule.scrypt;
const passwordBytes = new TextEncoder().encode(password);
const saltBytes = new TextEncoder().encode(salt);
const hash = await scrypt(passwordBytes, saltBytes, 1024, 8, 1, 32);
return Array.from(hash, byte => byte.toString(16).padStart(2, "0")).join("");
}
export default hashPassword;
// Generation time: 8.694s
// Result: FAIL