mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/ossl_ns_spki.c (Init_ossl_ns_spki): Stub documentation
for Netscape SPKI. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33488 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9bec8ef50c
commit
2e32ad8163
2 changed files with 20 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Oct 20 05:58:02 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* ext/openssl/ossl_ns_spki.c (Init_ossl_ns_spki): Stub documentation
|
||||
for Netscape SPKI.
|
||||
|
||||
Thu Oct 20 05:13:39 2011 Ryan Davis <ryan@lust.zenspider.com>
|
||||
|
||||
* lib/minitest/*: Imported minitest 2.6.2 (r6712)
|
||||
|
|
|
@ -228,12 +228,25 @@ ossl_spki_verify(VALUE self, VALUE key)
|
|||
return Qnil; /* dummy */
|
||||
}
|
||||
|
||||
/*
|
||||
* NETSCAPE_SPKI init
|
||||
/* Document-class: OpenSSL::Netscape::SPKI
|
||||
*
|
||||
* A Simple Public Key Infrastructure implementation (pronounced "spookey").
|
||||
* See {RFC 2692}[http://tools.ietf.org/html/rfc2692] and {RFC
|
||||
* 2693}[http://tools.ietf.org/html/rfc2692] for details.
|
||||
*/
|
||||
|
||||
/* Document-module: OpenSSL::Netscape
|
||||
*
|
||||
* OpenSSL::Netscape is a namespace for SPKI (Simple Public Key
|
||||
* Infrastructure) which implements Signed Public Key and Challenge.
|
||||
*/
|
||||
void
|
||||
Init_ossl_ns_spki()
|
||||
{
|
||||
#if 0
|
||||
mOSSL = rb_define_module("OpenSSL"); /* let rdoc know about mOSSL */
|
||||
#endif
|
||||
|
||||
mNetscape = rb_define_module_under(mOSSL, "Netscape");
|
||||
|
||||
eSPKIError = rb_define_class_under(mNetscape, "SPKIError", eOSSLError);
|
||||
|
|
Loading…
Reference in a new issue