This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients christian.heimes, dstufft, ncoghlan, pitrou
Date 2014-03-22.15:38:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395502732.2300.0.camel@fsol>
In-reply-to <1395502280.48.0.0233655277823.issue21015@psf.upfronthosting.co.za>
Content
> I know it doesn't segfault or raise an error if you do that, but I don't know if it:
> 
> 1) Replaces the already called ECDH Curve
> 2) Adds to the already called ECDH Curve
> 3) Silently Does Nothing.

Judging by OpenSSL's code, it replaces the already called ECDH curve.

(from s3_lib.c:

		if (s->cert->ecdh_tmp != NULL)
			EC_KEY_free(s->cert->ecdh_tmp);
		s->cert->ecdh_tmp = ecdh;

)
History
Date User Action Args
2014-03-22 15:38:54pitrousetrecipients: + pitrou, ncoghlan, christian.heimes, dstufft
2014-03-22 15:38:54pitroulinkissue21015 messages
2014-03-22 15:38:54pitroucreate