Reduce useless salt size

This commit is contained in:
2024-09-11 22:44:06 +02:00
parent 7aef4bed50
commit 68cb002951
+1 -1
View File
@@ -59,7 +59,7 @@ export async function hkdf(key: Uint8Array, usage: Usage, context?: string): Pro
{
name: 'HKDF',
hash: 'SHA-512',
salt: new Uint8Array(32),
salt: new Uint8Array(16),
info
},
material,