upstream: fix unintended sizeof pointer in debug path ok markus@
OpenBSD-Commit-ID: b9c0481ffc0cd801e0840e342e6a282a85aac93c
This commit is contained in:
parent
da40355234
commit
a218857903
|
@ -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.
|
* Copyright (c) 2019 Markus Friedl. All rights reserved.
|
||||||
*
|
*
|
||||||
|
@ -132,7 +132,7 @@ kex_kem_sntrup761x25519_enc(struct kex *kex,
|
||||||
dump_digest("server public key 25519:", server_pub, CURVE25519_SIZE);
|
dump_digest("server public key 25519:", server_pub, CURVE25519_SIZE);
|
||||||
dump_digest("server cipher text:", ciphertext,
|
dump_digest("server cipher text:", ciphertext,
|
||||||
crypto_kem_sntrup761_CIPHERTEXTBYTES);
|
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:",
|
dump_digest("concatenation of KEM key and ECDH shared key:",
|
||||||
sshbuf_ptr(buf), sshbuf_len(buf));
|
sshbuf_ptr(buf), sshbuf_len(buf));
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue