/* * $Id$ * 'OpenSSL for Ruby' project * Copyright (C) 2001-2002 Michal Rokos * All rights reserved. */ /* * This program is licenced under the same licence as Ruby. * (See the file 'LICENCE'.) */ #include "ossl.h" VALUE mX509; void Init_ossl_x509() { mX509 = rb_define_module_under(mOSSL, "X509"); Init_ossl_x509attr(mX509); Init_ossl_x509cert(mX509); Init_ossl_x509crl(mX509); Init_ossl_x509ext(mX509); Init_ossl_x509name(mX509); Init_ossl_x509req(mX509); Init_ossl_x509revoked(mX509); Init_ossl_x509store(mX509); }