fix unintended sizeof pointer in debug path
authorjsg <jsg@openbsd.org>
Sun, 5 Dec 2021 12:28:27 +0000 (12:28 +0000)
committerjsg <jsg@openbsd.org>
Sun, 5 Dec 2021 12:28:27 +0000 (12:28 +0000)
ok markus@

usr.bin/ssh/kexsntrup761x25519.c

index b2be71d..e3f7831 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: kexsntrup761x25519.c,v 1.1 2020/12/29 00:59:15 djm Exp $ */
+/* $OpenBSD: kexsntrup761x25519.c,v 1.2 2021/12/05 12:28:27 jsg Exp $ */
 /*
  * Copyright (c) 2019 Markus Friedl.  All rights reserved.
  *
@@ -128,7 +128,7 @@ kex_kem_sntrup761x25519_enc(struct kex *kex,
        dump_digest("server public key 25519:", server_pub, CURVE25519_SIZE);
        dump_digest("server cipher text:", ciphertext,
            crypto_kem_sntrup761_CIPHERTEXTBYTES);
-       dump_digest("server kem key:", kem_key, sizeof(kem_key));
+       dump_digest("server kem key:", kem_key, crypto_kem_sntrup761_BYTES);
        dump_digest("concatenation of KEM key and ECDH shared key:",
            sshbuf_ptr(buf), sshbuf_len(buf));
 #endif