aboutsummaryrefslogtreecommitdiffstats
path: root/ossl_x509.c
blob: 63a121c1068b6ef8e4bf967011f0b3618c80bf67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * $Id$
 * 'OpenSSL for Ruby' project
 * Copyright (C) 2001-2002  Michal Rokos <m.rokos@sh.cvut.cz>
 * 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);
}