Processing untrusted messages increases the attack surface of the
system.
Doing so securely is hard.
-Don't process messages before calling
+Do not process messages before calling
.Fn crypto_unlock_final .
.Sh IMPLEMENTATION DETAILS
The incremental interface is roughly three times slower than the direct
uint8_t *key_1 = shared_keys; /* Shared key 1 */
uint8_t *key_2 = shared_keys + 32; /* Shared key 2 */
crypto_blake2b(shared_keys, shared_secret, 32);
-/* Wipe the secret /
+/* Wipe the secret */
crypto_wipe(shared_secret, 32);
.Ed
.Sh SEE ALSO