fix syntax errors

This commit is contained in:
Moriz Wahl 2022-05-05 11:46:08 +02:00
parent 4afffea797
commit 0610737a97

View File

@ -125,9 +125,9 @@ const SecretKeyCryptographyCreateKey = (salt: string, password: string): Buffer[
const encryptionKeyHash = Buffer.alloc(sodium.crypto_shorthash_BYTES)
sodium.crypto_shorthash(encryptionKeyHash, encryptionKey, configLoginServerKey)
logger.trace("SecretKeyCryptographyCreateKey...successful");
logger.trace("encryptionKeyHash= " + ${encryptionKeyHash});
logger.trace("encryptionKey=" + ${encryptionKey});
logger.trace("SecretKeyCryptographyCreateKey...successful")
logger.trace(`encryptionKeyHash= ${encryptionKeyHash}`)
logger.trace(`encryptionKey= ${encryptionKey}`)
return [encryptionKeyHash, encryptionKey]
}