Docs: Update benchmark for moonshotai/kimi-k3 EFF:medium

This commit is contained in:
github-actions[bot]
2026-07-16 18:31:31 +00:00
parent d881df7814
commit 3531ba9742
8 changed files with 267 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
const SCRYPT_URL = "https://cdn.jsdelivr.net/npm/scrypt-js@3.0.1/+esm";
async function hashPassword(password, salt) {
const { scrypt } = await import(SCRYPT_URL);
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: 36.726s
// Result: PASS