aboutsummaryrefslogtreecommitdiff
path: root/changes/bug5170
diff options
context:
space:
mode:
authorMarek Majkowski <marek@popcount.org>2013-06-06 13:32:46 +0100
committerMarek Majkowski <marek@popcount.org>2013-06-06 13:32:46 +0100
commit68be3469c55ac1e4b8f2fecf2a82bcced7f949c8 (patch)
tree057c98ff606f56665049100bf21953a56dc808ec /changes/bug5170
parenta022930fda028aaf04c33eba3b3ae0f85f22526b (diff)
downloadtor-68be3469c55ac1e4b8f2fecf2a82bcced7f949c8.tar.gz
tor-68be3469c55ac1e4b8f2fecf2a82bcced7f949c8.zip
Bug 5170 - simplify i2d_PublicKey in pkey_eq
Diffstat (limited to 'changes/bug5170')
-rw-r--r--changes/bug51705
1 files changed, 3 insertions, 2 deletions
diff --git a/changes/bug5170 b/changes/bug5170
index 8aefe8dbe1..4e52c5ea6b 100644
--- a/changes/bug5170
+++ b/changes/bug5170
@@ -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.