diff options
author | Rob Austein <sra@hactrn.net> | 2011-01-09 20:28:06 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2011-01-09 20:28:06 +0000 |
commit | f05001f84d966a0b0c80b9d5212c2f3ac11d1660 (patch) | |
tree | ea34ff5b7bf803ae94f839f34f46e145209536a3 /pow/POW/__init__.py | |
parent | a852889d670f6dd1955bb430240798d7f69d342f (diff) |
Rework POW build so that we can use static libraries again.
svn path=/configure; revision=3602
Diffstat (limited to 'pow/POW/__init__.py')
-rw-r--r-- | pow/POW/__init__.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pow/POW/__init__.py b/pow/POW/__init__.py new file mode 100644 index 00000000..b150bbf1 --- /dev/null +++ b/pow/POW/__init__.py @@ -0,0 +1,16 @@ +from _POW import * +from _POW import _docset + +## @mainpage +## +## Python OpenSSL Wrappers (POW) is an old (but well-written) +## interface between Python and OpenSSL (ok, you could have guessed +## that from the name). Sadly, it appears to have fallen by the +## wayside, and M2Crypto is getting a lot more attention these days. +## +## POW ships with a submodule, POW.pkix, which includes a wonderful +## set of pure-Python routines for dealing with ASN.1 encodings of +## X.509v3 certificates, extensions, and related data. I haven't +## found anything as good anywhere else. This code deserves to be +## salvaged and put to work. + |