aboutsummaryrefslogtreecommitdiffstats
path: root/misc/python/src/x509.cpp
blob: dc462f48b90c2803c90f2de8fa564729efa69332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*************************************************
* Wrappers for X.509 types                       *
* (C) 2005-2006 Jack Lloyd <lloyd@randombit.net> *
*************************************************/

#include <boost/python.hpp>
using namespace boost::python;

#include <botan/x509_key.h>

void export_x509()
   {
   class_<X509_PublicKey>("x509_key", no_init)
      .def(
   }