mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-07-18 05:45:46 +00:00
Docs: Update benchmark for x-ai/grok-4.5
This commit is contained in:
10
tests/10_scrypt_hash/outputs/x-ai_grok-4.5.js
Normal file
10
tests/10_scrypt_hash/outputs/x-ai_grok-4.5.js
Normal file
@@ -0,0 +1,10 @@
|
||||
async function hashPassword(password,salt){
|
||||
const{default:scrypt}=await import("https://esm.sh/scrypt-js@3.0.1");
|
||||
const enc=new TextEncoder;
|
||||
const p=enc.encode(password),s=enc.encode(salt);
|
||||
const hash=await scrypt(p,s,1024,8,1,32);
|
||||
return Array.from(hash).map(b=>b.toString(16).padStart(2,"0")).join("")
|
||||
}
|
||||
export default hashPassword;
|
||||
// Generation time: 22.963s
|
||||
// Result: FAIL
|
||||
Reference in New Issue
Block a user