Bug 5170 - simplify i2d_PublicKey in pkey_eq

This commit is contained in:
Marek Majkowski
2013-06-06 13:32:46 +01:00
parent a022930fda
commit 68be3469c5
2 changed files with 16 additions and 17 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
o Code simplification and refactoring:
- Remove contrib/id_to_fp.c since it wasn't used anywhere.
- Since OpenSSL 0.9.7 i2d_RSAPublicKey supports allocating output buffer.
Use this feature to avoid calling this function twice. Fixes #5170.
- Since OpenSSL 0.9.7 i2d_* functions support allocating output
buffer. Avoid calling twice: i2d_RSAPublicKey, i2d_DHparams,
i2d_X509, i2d_PublicKey. Fixes #5170.