You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
java code the memory set memory 12, I use the some code i web, It tell me memory cost is too small, now we can not change the momory the big, how can I fix the propblem?hehe is code,
java code the memory set memory 12, I use the some code i web, It tell me memory cost is too small, now we can not change the momory the big, how can I fix the propblem?hehe is code,
export async function argonEncrypt(value) {
const keyData = new TextEncoder().encode(key)
const res= await argon2.hash({
pass: value,
salt: value,
time: 20,
mem: 12,
type: argon2.ArgonType.Argon2id,
hashLen:32,
parallelism: 2
})
return Base64.fromUint8Array(res.hash)
}
The text was updated successfully, but these errors were encountered: