Docs: Update Gemini benchmark results

This commit is contained in:
github-actions[bot]
2025-11-18 19:30:39 +00:00
parent 51a98c1e1b
commit 76fb066932
133 changed files with 2340 additions and 0 deletions

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 + 256).toString(16).slice(1)).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')
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');
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://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('')
}
export default hashPassword;

View File

@@ -0,0 +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('')
}
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')
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

@@ -0,0 +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('')
}
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 + 256).toString(16).slice(1)).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;