summaryrefslogtreecommitdiffstats
path: root/ext/openssl/ossl.c
diff options
context:
space:
mode:
authordrbrain <drbrain@ruby-lang.org>2013-02-19 01:36:30 +0000
committerdrbrain <drbrain@ruby-lang.org>2013-02-19 01:36:30 +0000
commit6832b2e61ec287bc84865773c276da76ada0007d (patch)
tree31443abba202fb4fb5439737f9fb9f8ce5903a56 /ext/openssl/ossl.c
parent6b5309c567d465f08c60fcf72385172be8eee3a0 (diff)
downloadruby-openssl-history-6832b2e61ec287bc84865773c276da76ada0007d.tar.gz
* ext/openssl/ossl.c (class OpenSSL): Use only inner parenthesis in
create_extension examples. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39310 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/ossl.c')
-rw-r--r--ext/openssl/ossl.c43
1 files changed, 25 insertions, 18 deletions
diff --git a/ext/openssl/ossl.c b/ext/openssl/ossl.c
index f388f3c..99307b4 100644
--- a/ext/openssl/ossl.c
+++ b/ext/openssl/ossl.c
@@ -701,12 +701,15 @@ ossl_fips_mode_set(VALUE self, VALUE enabled)
*
* 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 enabled)
* 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 enabled)
* 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
*