Docs: Update Gemini benchmark results

This commit is contained in:
github-actions[bot]
2025-11-18 22:04:41 +00:00
parent 31a18dd4ee
commit 33b8150958
220 changed files with 3259 additions and 1494 deletions

View File

@@ -2,6 +2,6 @@ const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js@3.0.1')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => (b + 256).toString(16).slice(1)).join('')
return Array.from(k, b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -1,7 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, '0')).join('')
}
const { scrypt } = await import('https://cdn.jsdelivr.net/npm/scrypt-js@3.0.1/scrypt.js');
const e = new TextEncoder();
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32);
return Array.from(k, b => b.toString(16).padStart(2, '0')).join('');
};
export default hashPassword;

View File

@@ -1,5 +1,5 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const { scrypt } = await import('https://esm.sh/scrypt-js@3.0.1')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, '0')).join('')

View File

@@ -1,7 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js');
const e = new TextEncoder();
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32);
return [...k].map(b => b.toString(16).padStart(2, '0')).join('');
};
const { scrypt } = await import('https://esm.sh/scrypt-js')
const e = new TextEncoder()
const h = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...h].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -1,7 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://cdn.jsdelivr.net/npm/scrypt-js@3.0.1/+esm')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return Array.from(k, b => b.toString(16).padStart(2, '0')).join('')
const h = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return Array.from(h, b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -1,7 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://unpkg.com/scrypt-js?module')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, '0')).join('')
const hashPassword = async (pwd, salt) => {
const { scrypt } = await import('https://cdn.jsdelivr.net/npm/scrypt-js@3.0.1/scrypt.js')
const enc = new TextEncoder()
const key = await scrypt(enc.encode(pwd), enc.encode(salt), 1024, 8, 1, 32)
return [...key].map(b => (b + 256).toString(16).slice(1)).join('')
}
export default hashPassword;

View File

@@ -1,7 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, 0)).join('')
}
const hashPassword = async (pwd, salt) => {
const { scrypt } = await import('https://cdn.jsdelivr.net/npm/scrypt-js@3.0.1/+esm');
const e = new TextEncoder();
const h = await scrypt(e.encode(pwd), e.encode(salt), 1024, 8, 1, 32);
return Array.from(h, b => b.toString(16).padStart(2, '0')).join('');
};
export default hashPassword;

View File

@@ -1,7 +1,7 @@
const hashPassword = async (p, s) => {
const hashPassword = async (pwd, salt) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return Array.from(k, b => b.toString(16).padStart(2, '0')).join('')
const h = await scrypt(e.encode(pwd), e.encode(salt), 1024, 8, 1, 32)
return [...h].map(v => v.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -1,7 +1,7 @@
const hashPassword = async (pwd, salt) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const enc = txt => new TextEncoder().encode(txt)
const key = await scrypt(enc(pwd), enc(salt), 1024, 8, 1, 32)
return Array.from(key, b => b.toString(16).padStart(2, '0')).join('')
}
const { scrypt } = await import('https://esm.sh/scrypt-js');
const enc = new TextEncoder();
const hash = await scrypt(enc.encode(pwd), enc.encode(salt), 1024, 8, 1, 32);
return Array.from(hash, b => b.toString(16).padStart(2, '0')).join('');
};
export default hashPassword;

View File

@@ -1,7 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js@3.0.1')
const { scrypt } = await import('https://esm.sh/scrypt-js')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => (b + 256).toString(16).slice(1)).join('')
const h = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...h].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js@3.0.1')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,9 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const e = new TextEncoder()
return Array.from(
await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32),
b => b.toString(16).padStart(2, '0')
).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,7 @@
const hashPassword = async (password, salt) => {
const { scrypt } = await import('https://unpkg.com/scrypt-js@3.0.1/scrypt.js')
const enc = str => new TextEncoder().encode(str)
const buf = await scrypt(enc(password), enc(salt), 1024, 8, 1, 32)
return Array.from(buf, b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,7 @@
const hashPassword = async (pwd, salt) => {
const { scrypt } = await import('https://esm.sh/scrypt-js@3.0.1')
const e = new TextEncoder()
const k = await scrypt(e.encode(pwd), e.encode(salt), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://esm.sh/scrypt-js@3.0.1')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,11 @@
const hashPassword = async (password, salt) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const encoder = new TextEncoder()
const buffer = await scrypt(
encoder.encode(password),
encoder.encode(salt),
1024, 8, 1, 32
)
return [...buffer].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt: k } = await import('https://esm.sh/scrypt-js@3.0.1')
const e = t => new TextEncoder().encode(t)
const r = await k(e(p), e(s), 1024, 8, 1, 32)
return [...r].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -1,7 +1,7 @@
const hashPassword = async (p, s) => {
const hashPassword = async (pwd, salt) => {
const { scrypt } = await import('https://esm.sh/scrypt-js')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
const k = await scrypt(e.encode(pwd), e.encode(salt), 1024, 8, 1, 32)
return [...k].map(b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;

View File

@@ -0,0 +1,7 @@
const hashPassword = async (p, s) => {
const { scrypt } = await import('https://cdn.jsdelivr.net/npm/scrypt-js/+esm')
const e = new TextEncoder()
const k = await scrypt(e.encode(p), e.encode(s), 1024, 8, 1, 32)
return Array.from(k, b => b.toString(16).padStart(2, '0')).join('')
}
export default hashPassword;