aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-05-16 01:43:47 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-05-18 11:53:58 +0900
commit472fa7b97538fa3fef189550f728f8857ae3cfa5 (patch)
tree6ed6023194a4743a0aba139a0f66188d5f891d59 /ChangeLog
parent31b5557d68680142463cc19b93fe543b98ae3691 (diff)
downloadruby-topic/openssl-ecpoint-mul-bug.tar.gz
ext/openssl: refactor OpenSSL::PKey::EC::Point#multopic/openssl-ecpoint-mul-bug
* ext/openssl/ossl_pkey_ec.c (ossl_ec_point_mul): Validate the arguments before passing to EC_POINT(s)_mul(). Add description of this method. [ruby-core:65152] [Bug #10268] * test/openssl/test_pkey_ec.rb (test_ec_point_mul): Test that OpenSSL::PKey::EC::Point#mul works.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 25d6d25176..6094f1a19c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Wed May 18 11:53:49 2016 Kazuki Yamaguchi <k@rhe.jp>
+
+ * ext/openssl/ossl_pkey_ec.c (ossl_ec_point_mul): Validate the
+ arguments before passing to EC_POINT(s)_mul(). Add description of this
+ method. [ruby-core:65152] [Bug #10268]
+
+ * test/openssl/test_pkey_ec.rb (test_ec_point_mul): Test that
+ OpenSSL::PKey::EC::Point#mul works.
+
Wed May 18 11:19:59 2016 Kazuki Yamaguchi <k@rhe.jp>
* ext/openssl/ossl_bn.c (try_convert_to_bnptr): Extracted from