aboutsummaryrefslogtreecommitdiffstats
path: root/src/cert/x509cert/x509_obj.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add a (clunky) function X509_Object::hash_used_for_signature thatlloyd2010-09-201-0/+21
| | | | | | | returns the hash function that was used to create the signature. Useful for a future X509 path validator that inform the user which hash(es) they are relying on and/or allowing the ability to reject hashes which are undesirable (MD2, MD5, etc)
* Don't use SecureVector to store certificate data; mlock'ed memory inlloyd2010-09-171-3/+3
| | | | | particular is precious. Really these could probably just as easily be std::vectors since even zeroizing the memory isn't relevant here.
* Remove dependencies on X509_Storelloyd2010-09-171-4/+11
|
* Split up src/cert/x509 into a set of modules, though mostly mutuallylloyd2010-09-171-0/+210
dependent right now.