aboutsummaryrefslogtreecommitdiff
path: root/rpkid/ext
AgeCommit message (Collapse)Author
2012-09-12Debug X509.getRFC3779(), add IPv6 support. Will need refactoring onceRob Austein
I see what the ROA code looks like. svn path=/branches/tk274/; revision=4712
2012-09-12CheckpointRob Austein
svn path=/branches/tk274/; revision=4711
2012-09-12CheckpointRob Austein
svn path=/branches/tk274/; revision=4710
2012-09-12Get reference counts right.Rob Austein
svn path=/branches/tk274/; revision=4709
2012-09-12Checkpoint working version of x509_object_get_rfc3779(). HideouslyRob Austein
ugly, still needs work, but appears to return correct results. svn path=/branches/tk274/; revision=4708
2012-09-11Fix exception hierarchy. Add KeyUsage methods; some details willRob Austein
vary, but general approach should work for many (most? all?) other extensions. svn path=/branches/tk274/; revision=4707
2012-09-10Checkpoint after a lot more cleanup and simplification. No longerRob Austein
linking against libssl, only libcrypto. Internal documentation almost matches current reality. A few deliberate harmless compilation warnings to remind me of loose ends that still want cleaning up. svn path=/branches/tk274/; revision=4706
2012-09-08Drag rpki.POW classes kicking and screaming into the 21st century.Rob Austein
Replaced old factory functions with proper (well, I hope they're proper) class __new__() and __init__() methods as appropriate, whack PyTypeObject structures to make it possible to subclass these classes, etcetera. Doc strings for classes and methods are still horribly out of date, but at least it all shows up properly now. Caveat: This is a major change and has not yet been heavily tested. It seems to work, but splitting the old factory functions into __new__() and __init__() methods exposed some corner cases which I may or may not have handled correctly. svn path=/branches/tk274/; revision=4705
2012-09-06Error handling cleanup.Rob Austein
svn path=/branches/tk274/; revision=4703
2012-09-05Prune a whole lot of unused EVP_CIPHER code. The only purpose thatRob Austein
code still served was to support selection of an (optional) encryption algorithm for new RSA private keys; since none of the two dozen algorithms supported by that code were anything one would choose this year, I converted the whole mess just to use AES-256-CBC as the one supported encryption algorithm. Fix this if anything ever cares. svn path=/branches/tk274/; revision=4702
2012-09-05Forgot that POW.pkix uses Asymmetric.sign() and Asymmetric.verify().Rob Austein
Since we can't get rid of them yet, fix them to pass the digest length along to OpenSSL for checking. svn path=/branches/tk274/; revision=4701
2012-09-05Another POW.c cleanup checkpoint.Rob Austein
svn path=/branches/tk274/; revision=4700
2012-09-05Add and use Define_Method() macro to simplify method tables and set upRob Austein
method documentation. Most of the existing method documentation needs editing to for this to be fully useful, but it's a start. svn path=/branches/tk274/; revision=4699
2012-09-05Cleanup checkpoint: METH_NOARGS.Rob Austein
svn path=/branches/tk274/; revision=4698
2012-09-04More pruning.Rob Austein
svn path=/branches/tk274/; revision=4697
2012-09-04As part of dragging POW.c into the 21st century, get rid of hugeRob Austein
swacks of code which either haven't been used in RPKI for years or have never been used in RPKI at all, and which, in either case, I'd rather not have to maintain: SSL/TLS, MD2, RIPEMD160, HMAC. There's almost certainly more to prune, but this was the lowest-hanging fruit. svn path=/branches/tk274/; revision=4696
2012-09-04CleanupRob Austein
svn path=/branches/tk274/; revision=4695
2012-09-03Clean up multi-value RDN handling.Rob Austein
svn path=/branches/tk274/; revision=4693
2012-09-02Whack X509_NAME code to use an encoding compatible with multi-valueRob Austein
RDNs, for compatability with other X.509-aware Python code that uses this encoding. We don't really expect to see multi-value RDNs in RPKI, nor do we fully support them yet; for the moment, the goal is just to get to a point where we can rewrite the rpki.x509 subject and issuer name functions to use POW rather than POW.pkix. svn path=/branches/tk274/; revision=4688
2012-09-02Clean up a lot of gratuitous use of dynamic memory.Rob Austein
svn path=/branches/tk274/; revision=4687
2012-09-01Clean up X509_object_helper_set_name() and teach it to deal withRob Austein
numeric OIDs. svn path=/branches/tk274/; revision=4685
2012-08-31More cleanup.Rob Austein
svn path=/branches/tk274/; revision=4683
2012-08-31Clean up X509_object_helper_get_name().Rob Austein
svn path=/branches/tk274/; revision=4682
2012-08-14Add POW C function to pull SKI from a certificate, so we can bypassRob Austein
the slower POW.pkix code in what profiling suggests is a serious hotspot during manifest generation. See #20, #274. svn path=/branches/tk274/; revision=4631
2011-05-17Missing "static"Rob Austein
svn path=/rpkid/ext/POW.c; revision=3815
2011-01-20Move POW extension module into rpkid directory and use distutils toRob Austein
build it. svn path=/configure; revision=3610