aboutsummaryrefslogtreecommitdiffstats
path: root/src/asn1/asn1_obj.h
Commit message (Collapse)AuthorAgeFilesLines
* propagate from branch 'net.randombit.botan' (head ↵lloyd2010-10-131-55/+1
|\ | | | | | | | | | | 6581b789d58717bc6acee5c6a248e2d44c636e40) to branch 'net.randombit.botan.c++0x' (head 227a989ae94da8f4379ea4b9b0fc0ee8dbdde0c7)
| * Split some of the ASN.1 types into their own headerslloyd2010-10-131-55/+1
| |
* | propagate from branch 'net.randombit.botan' (head ↵lloyd2010-10-131-1/+2
|\ \ | |/ |/| | | | | | | 2898d79f992f27a328a3e41d34b46eb1052da0de) to branch 'net.randombit.botan.c++0x' (head 6cba76268fd69a73195760c021b7f881b8a6552c)
| * propagate from branch 'net.randombit.botan' (head ↵lloyd2010-06-221-2/+2
| |\ | | | | | | | | | | | | | | | 647eeb4f4cf8fa4cf487cdc463d48f09fe18658e) to branch 'net.randombit.botan.c++0x' (head 2539675db91883b11895ddc5244721e93c413321)
| * \ propagate from branch 'net.randombit.botan' (head ↵lloyd2010-06-171-5/+5
| |\ \ | | | | | | | | | | | | | | | | | | | | 294e2082ce9231d6165276e2f2a4153a0116aca3) to branch 'net.randombit.botan.c++0x' (head 0b695fad10f924601e07b009fcd781191fafcb28)
| * | | Remove system_time(), replace entirely with std::chrono.lloyd2009-12-011-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Only remaining use of time.h/ctime is to convert from a time point to a calendar value, which still requires C's gmtime. Hide it entirely in time.cpp and return a calendar_point struct instead of a std::tm.
* | | | Add strict comparisons for X509_Timelloyd2010-09-171-0/+2
| |_|/ |/| |
* | | Doxygenlloyd2010-06-211-2/+2
| |/ |/|
* | More Doxygen fixeslloyd2010-06-151-5/+5
|/
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-301-26/+28
| | | | | | | | | | | | | | | up during the Fedora submission review, that each source file include some text about the license. One handy Perl script later and each file now has the line Distributed under the terms of the Botan license after the copyright notices. While I was in there modifying every file anyway, I also stripped out the remainder of the block comments (lots of astericks before and after the text); this is stylistic thing I picked up when I was first learning C++ but in retrospect it is not a good style as the structure makes it harder to modify comments (with the result that comments become fewer, shorter and are less likely to be updated, which are not good things).
* Move almost all of the ASN.1, BER, and DER codec related code into newlloyd2008-09-281-0/+158
module asn1 Move hex and base64 codecs into new codecs directory. Also move zlib and bzip2 to codecs from compress.