[前][次][番号順一覧][スレッド一覧]

ruby-changes:27258

From: drbrain <ko1@a...>
Date: Tue, 19 Feb 2013 10:36:41 +0900 (JST)
Subject: [ruby-changes:27258] drbrain:r39310 (trunk): * ext/openssl/ossl.c (class OpenSSL): Use only inner parenthesis in

drbrain	2013-02-19 10:36:30 +0900 (Tue, 19 Feb 2013)

  New Revision: 39310

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=39310

  Log:
    * ext/openssl/ossl.c (class OpenSSL):  Use only inner parenthesis in
      create_extension examples.

  Modified files:
    trunk/ChangeLog
    trunk/ext/openssl/ossl.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 39309)
+++ ChangeLog	(revision 39310)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Tue Feb 19 10:35:52 2013  Eric Hodel  <drbrain@s...>
+
+	* ext/openssl/ossl.c (class OpenSSL):  Use only inner parenthesis in
+	  create_extension examples.
+
 Tue Feb 19 10:27:12 2013  Eric Hodel  <drbrain@s...>
 
 	* ext/openssl/ossl.c (class OpenSSL):  Fixed ExtensionFactory example.
Index: ext/openssl/ossl.c
===================================================================
--- ext/openssl/ossl.c	(revision 39309)
+++ ext/openssl/ossl.c	(revision 39310)
@@ -701,12 +701,15 @@ ossl_fips_mode_set(VALUE self, VALUE ena https://github.com/ruby/ruby/blob/trunk/ext/openssl/ossl.c#L701
  *
  *   extension_factory = OpenSSL::X509::ExtensionFactory.new nil, cert
  *
- *   cert.add_extension(extension_factory.create_extension
- *     'basicConstraints', 'CA:FALSE')
- *   cert.add_extension(extension_factory.create_extension
- *     'keyUsage', 'keyEncipherment,dataEncipherment,digitalSignature')
- *   cert.add_extension(extension_factory.create_extension
- *     'subjectKeyIdentifier', 'hash')
+ *   cert.add_extension \
+ *     extension_factory.create_extension('basicConstraints', 'CA:FALSE', true)
+ *
+ *   cert.add_extension \
+ *     extension_factory.create_extension(
+ *       'keyUsage', 'keyEncipherment,dataEncipherment,digitalSignature')
+ *
+ *   cert.add_extension \
+ *     extension_factory.create_extension('subjectKeyIdentifier', 'hash')
  *
  * The list of supported extensions (and in some cases their possible values)
  * can be derived from the "objects.h" file in the OpenSSL source code.
@@ -777,19 +780,20 @@ ossl_fips_mode_set(VALUE self, VALUE ena https://github.com/ruby/ruby/blob/trunk/ext/openssl/ossl.c#L780
  *   extension_factory.subject_certificate = ca_cert
  *   extension_factory.issuer_certificate = ca_cert
  *
- *   ca_cert.add_extension(extension_factory.create_extension
- *     'subjectKeyIdentifier', 'hash')
+ *   ca_cert.add_extension \
+ *     extension_factory.create_extension('subjectKeyIdentifier', 'hash')
  *
  * This extension indicates the CA's key may be used as a CA.
  *
- *   ca_cert.add_extension(extension_factory.create_extension
- *     'basicConstraints', 'CA:TRUE', true)
+ *   ca_cert.add_extension \
+ *     extension_factory.create_extension('basicConstraints', 'CA:TRUE', true)
  *
  * This extension indicates the CA's key may be used to verify signatures on
  * both certificates and certificate revocations.
  *
- *   ca_cert.add_extension(extension_factory.create_extension
- *     'keyUsage', 'cRLSign,keyCertSign', true)
+ *   ca_cert.add_extension \
+ *     extension_factory.create_extension(
+ *       'keyUsage', 'cRLSign,keyCertSign', true)
  *
  * Root CA certificates are self-signed.
  *
@@ -845,12 +849,15 @@ ossl_fips_mode_set(VALUE self, VALUE ena https://github.com/ruby/ruby/blob/trunk/ext/openssl/ossl.c#L849
  *   extension_factory.subject_certificate = csr_cert
  *   extension_factory.issuer_certificate = ca_cert
  *
- *   csr_cert.add_extension(extension_factory.create_extension
- *     'basicConstraints', 'CA:FALSE')
- *   csr_cert.add_extension(extension_factory.create_extension
- *     'keyUsage', 'keyEncipherment,dataEncipherment,digitalSignature')
- *   csr_cert.add_extension(extension_factory.create_extension
- *     'subjectKeyIdentifier', 'hash')
+ *   csr_cert.add_extension \
+ *     extension_factory.create_extension('basicConstraints', 'CA:FALSE')
+ *
+ *   csr_cert.add_extension \
+ *     extension_factory.create_extension(
+ *       'keyUsage', 'keyEncipherment,dataEncipherment,digitalSignature')
+ *
+ *   csr_cert.add_extension \
+ *     extension_factory.create_extension('subjectKeyIdentifier', 'hash')
  *
  *   csr_cert.sign ca_key, OpenSSL::Digest::SHA1.new
  *

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]