Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
tniessen committed Dec 12, 2024
1 parent fdfa7e7 commit de057f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/test/server.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const server = createServer((req, res) => {
throw new Error('Not all algorithm names are unique');
}

const nonce = randomBytes(Math.max(...PQClean.kem.supportedAlgorithms.map((algorithm) => algorithm.keySize)))
const nonce = randomBytes(Math.max(...PQClean.kem.supportedAlgorithms.map((algorithm) => algorithm.keySize)));
challenge = { algorithmNames, remaining, nonce };
console.log(`ok client requested challenge for ${algorithmNames.length} algorithms`);
res.end(challenge.nonce);
Expand Down

0 comments on commit de057f0

Please sign in to comment.