CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/11/08 15:10:18
Modified files:
lib/libcrypto/ec: ec_key.c
Log message:
Clean up EC_KEY_dup()
This calls init() with the default method, so EC_KEY_copy() gets a chance
to call finish() if the source's method doesn't match. But no init() call
is made in EC_KEY_copy(). Of course the source method's copy() needs to be
able to cope. The great news is that ssh uses this. Sigh.
ok beck jsing
