mirror of
https://github.com/multipleof4/lynchmark.git
synced 2026-05-18 04:32:12 +00:00
Docs: Update benchmark for openai/gpt-5.5 EFF:high
This commit is contained in:
24
tests/10_scrypt_hash/outputs/openai_gpt-5.5 EFF_high.js
Normal file
24
tests/10_scrypt_hash/outputs/openai_gpt-5.5 EFF_high.js
Normal file
@@ -0,0 +1,24 @@
|
||||
const SCRYPT_CDN = 'https://cdn.jsdelivr.net/npm/scrypt-js@3.0.1/+esm';
|
||||
|
||||
async function hashPassword(password, salt) {
|
||||
if (typeof password !== 'string' || typeof salt !== 'string')
|
||||
throw new TypeError('password and salt must be strings');
|
||||
|
||||
const { scrypt } = await import(SCRYPT_CDN);
|
||||
const enc = new TextEncoder();
|
||||
const hash = await scrypt(
|
||||
enc.encode(password),
|
||||
enc.encode(salt),
|
||||
1024,
|
||||
8,
|
||||
1,
|
||||
32
|
||||
);
|
||||
|
||||
return [...hash]
|
||||
.map(b => b.toString(16).padStart(2, '0'))
|
||||
.join('');
|
||||
}
|
||||
export default hashPassword;
|
||||
// Generation time: 12.627s
|
||||
// Result: PASS
|
||||
Reference in New Issue
Block a user