Files
pcp/bindings/py/pypcp/__init__.py

17 lines
315 B
Python
Raw Normal View History

2014-12-14 14:38:30 +01:00
from cffi import FFI
2014-12-14 18:06:45 +01:00
# loads generated structs and typedefs and imports them into cffi
from pypcp.dll import *
2014-12-14 14:38:30 +01:00
# load oop wrapper classes
from pypcp.publickey import *
from pypcp.key import *
from pypcp.stream import *
from pprint import pprint
2014-12-14 18:06:45 +01:00
__all__ = ('raw Context Key PublicKey Stream Buffer'.split() )
2014-12-14 18:06:45 +01:00
2014-12-14 14:38:30 +01:00