diff options
author | djm@openbsd.org <djm@openbsd.org> | 2019-01-21 10:40:11 +0000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2019-01-21 23:13:03 +1100 |
commit | aaca72d6f1279b842066e07bff797019efeb2c23 (patch) | |
tree | 1c052b62822f198ac6cfc33235345703f86e7925 /kexsntrup4591761x25519.c | |
parent | 70867e1ca2eb08bbd494fe9c568df4fd3b35b867 (diff) |
upstream: rename kex->kem_client_pub -> kex->client_pub now that
KEM has been renamed to kexgen
from markus@ ok djm@
OpenBSD-Commit-ID: fac6da5dc63530ad0da537db022a9a4cfbe8bed8
Diffstat (limited to 'kexsntrup4591761x25519.c')
-rw-r--r-- | kexsntrup4591761x25519.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kexsntrup4591761x25519.c b/kexsntrup4591761x25519.c index d845f3d44..b0605b96a 100644 --- a/kexsntrup4591761x25519.c +++ b/kexsntrup4591761x25519.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kexsntrup4591761x25519.c,v 1.2 2019/01/21 10:35:09 djm Exp $ */ | 1 | /* $OpenBSD: kexsntrup4591761x25519.c,v 1.3 2019/01/21 10:40:11 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2019 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2019 Markus Friedl. All rights reserved. |
4 | * | 4 | * |
@@ -58,7 +58,7 @@ kex_kem_sntrup4591761x25519_keypair(struct kex *kex) | |||
58 | #ifdef DEBUG_KEXECDH | 58 | #ifdef DEBUG_KEXECDH |
59 | dump_digest("client public key c25519:", cp, CURVE25519_SIZE); | 59 | dump_digest("client public key c25519:", cp, CURVE25519_SIZE); |
60 | #endif | 60 | #endif |
61 | kex->kem_client_pub = buf; | 61 | kex->client_pub = buf; |
62 | buf = NULL; | 62 | buf = NULL; |
63 | out: | 63 | out: |
64 | sshbuf_free(buf); | 64 | sshbuf_free(buf); |