File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ Mon Feb 24 12:39:11 2014 Zachary Scott <e@zzak.io>
2
+
3
+ * ext/openssl/ossl_pkey_dh.c: Fixed typo by Sandor Szuecs [Bug #9243]
4
+
1
5
Mon Feb 24 12:33:38 2014 Zachary Scott <e@zzak.io>
2
6
3
7
* lib/net/smtp.rb: [DOC] Remove dead link to RAA by Giorgos Tsiftsis
Original file line number Diff line number Diff line change @@ -572,7 +572,7 @@ Init_ossl_dh()
572
572
*
573
573
* === Example of a key exchange
574
574
* dh1 = OpenSSL::PKey::DH.new(2048)
575
- * params = dh1.public_key.to_der #you may send this publicly to the participating party
575
+ * der = dh1.public_key.to_der #you may send this publicly to the participating party
576
576
* dh2 = OpenSSL::PKey::DH.new(der)
577
577
* dh2.generate_key! #generate the per-session key pair
578
578
* symm_key1 = dh1.compute_key(dh2.pub_key)
@@ -615,4 +615,3 @@ Init_ossl_dh()
615
615
{
616
616
}
617
617
#endif /* NO_DH */
618
-
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "1.9.3"
2
- #define RUBY_PATCHLEVEL 543
2
+ #define RUBY_PATCHLEVEL 544
3
3
4
4
#define RUBY_RELEASE_DATE "2014-02-24"
5
5
#define RUBY_RELEASE_YEAR 2014
You can’t perform that action at this time.
0 commit comments