From f462afa5cf29d15d572f8c0bdfc3583249fa628e Mon Sep 17 00:00:00 2001 From: drbrain Date: Sat, 4 Dec 2010 02:41:13 +0000 Subject: Add documentation for OpenSSL::X509::Extension.new git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30079 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/openssl/ossl_x509ext.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ext/openssl/ossl_x509ext.c') diff --git a/ext/openssl/ossl_x509ext.c b/ext/openssl/ossl_x509ext.c index c2019b926c..3e34608b4b 100644 --- a/ext/openssl/ossl_x509ext.c +++ b/ext/openssl/ossl_x509ext.c @@ -270,6 +270,18 @@ ossl_x509ext_alloc(VALUE klass) return obj; } +/* + * call-seq: + * OpenSSL::X509::Extension.new asn1 + * OpenSSL::X509::Extension.new name, value + * OpenSSL::X509::Extension.new name, value, critical + * + * Creates an X509 extension. + * + * The extension may be created from +asn1+ data or from an extension +name+ + * and +value+. The +name+ may be either an OID or an extension name. If + * +critical+ is true the extension is marked critical. + */ static VALUE ossl_x509ext_initialize(int argc, VALUE *argv, VALUE self) { -- cgit v1.2.3