From b8082a5f1799ff58e1f4d348d11e27e7d65b4ad1 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 9 Jan 2016 14:15:49 +0000 Subject: openssl: fix examples [ci skip] * ext/openssl/ossl.c: Add missing variables to documentation examples. [Fix GH-1189] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53486 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ ext/openssl/ossl.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3b568d3f41..9a2af0fd98 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 9 23:15:25 2016 Jon Moss + + * ext/openssl/ossl.c: Add missing variables to documentation + examples. [Fix GH-1189] + Sat Jan 9 18:25:57 2016 Nobuyoshi Nakada * symbol.h (is_attrset_id): ASET is an attrset ID. fix diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c index 92b5d1b137..d03dfa7ad0 100644 --- a/ext/openssl/ossl.c +++ b/ext/openssl/ossl.c @@ -626,6 +626,7 @@ static void Init_ossl_locks(void) * loading the key: * * key4_pem = File.read 'private.secure.pem' + * pass_phrase = 'my secure pass phrase goes here' * key4 = OpenSSL::PKey::RSA.new key4_pem, pass_phrase * * == RSA Encryption @@ -790,6 +791,7 @@ static void Init_ossl_locks(void) * This example creates a self-signed certificate using an RSA key and a SHA1 * signature. * + * key = OpenSSL::PKey::RSA.new 2048 * name = OpenSSL::X509::Name.parse 'CN=nobody/DC=example' * * cert = OpenSSL::X509::Certificate.new @@ -859,6 +861,7 @@ static void Init_ossl_locks(void) * not readable by other users. * * ca_key = OpenSSL::PKey::RSA.new 2048 + * pass_phrase = 'my secure pass phrase goes here' * * cipher = OpenSSL::Cipher::Cipher.new 'AES-128-CBC' * -- cgit v1.2.3