mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-05-18 04:32:12 +00:00
Docs: Update benchmark for google/gemini-3.1-flash-lite
This commit is contained in:
15
tests/10_scrypt_hash/outputs/google_gemini-3.1-flash-lite.js
Normal file
15
tests/10_scrypt_hash/outputs/google_gemini-3.1-flash-lite.js
Normal 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
|
||||
Reference in New Issue
Block a user