mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-17 12:00:56 +01:00
17 lines
315 B
Python
17 lines
315 B
Python
from cffi import FFI
|
|
|
|
# loads generated structs and typedefs and imports them into cffi
|
|
from pypcp.dll import *
|
|
|
|
# load oop wrapper classes
|
|
from pypcp.publickey import *
|
|
from pypcp.key import *
|
|
from pypcp.stream import *
|
|
from pprint import pprint
|
|
|
|
__all__ = ('raw Context Key PublicKey Stream Buffer'.split() )
|
|
|
|
|
|
|
|
|