- Make curve25519 work after fixing a typo, interoperates with OpenSSH

- comment on ecc binary size effects

--HG--
branch : ecc
This commit is contained in:
Matt Johnston
2013-11-09 00:02:26 +08:00
parent 29b1455f36
commit 1e00d0b926
4 changed files with 17 additions and 10 deletions

View File

@@ -213,7 +213,7 @@ static void send_msg_kexdh_reply(mp_int *dh_e, buffer *ecdh_qs) {
{
struct kex_curve25519_param *param = gen_kexcurve25519_param();
kexcurve25519_comb_key(param, ecdh_qs, svr_opts.hostkey);
buf_putstring(ses.writepayload, param->priv, CURVE25519_LEN);
buf_putstring(ses.writepayload, param->pub, CURVE25519_LEN);
free_kexcurve25519_param(param);
}
#endif