aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
* Rename some variables to make operation a little more obviouslloyd2006-06-251-8/+8
* Change how builtin modules are loaded - provide an interface to alloyd2006-06-252-71/+75
* Guard set_timer with a check so it does not set the timer to NULLlloyd2006-06-251-2/+5
* Add a set_timer method to Library_State, and rearrange the orderlloyd2006-06-251-7/+14
* Add a class that encapsulates the options given at initialization timelloyd2006-06-251-0/+76
* Have allocator objects 'know' their own names, rather than keeping themlloyd2006-06-253-11/+13
* Make Library_State::x509_state() non-const to support lazy initialiation.lloyd2006-06-251-1/+1
* Have system_clock return 0, rather than crash, if no timer is setlloyd2006-06-251-7/+7
* Make set_global_state a little more elegant, by having it deletelloyd2006-06-251-2/+1
* Respect configuration parameters for if an extension should belloyd2006-06-251-2/+14
* Remove a function in Certificate_Extension that was declared butlloyd2006-06-251-2/+6
* Remove the older version of X509_CA::make_cert entirelylloyd2006-06-251-32/+10
* Alter the self-signed cert generating code to use the new versionlloyd2006-06-251-4/+13
* Add a new variant of X509_CA::make_cert that takes an Extensions object,lloyd2006-06-251-0/+18
* Remove Extension::make_extension, use the global extension prototypeslloyd2006-06-242-32/+6
* Add a complete set of extension object prototypes to the globallloyd2006-06-241-29/+20
* Add error checking to x509_state()lloyd2006-06-241-1/+5
* Add an X509_GlobalState pointer to the library state.lloyd2006-06-243-6/+100
* Small cleanup to Authority_Key_Identifier::decode_innerlloyd2006-06-241-2/+3
* Add a swap_global_state, to allow the use of multiplelloyd2006-06-241-0/+8
* The OID stored in the Data_Store member of PKCS10_Request is justlloyd2006-06-231-1/+1
* Fix the constructor of Mutex_State_Errorlloyd2006-06-231-5/+3
* Wrap a line at 80 columnslloyd2006-06-231-1/+2
* Add a new exception type in src/mutex.cpp to make the code a little morelloyd2006-06-231-2/+12
* Use cctype instead of ctype.h to put tolower into the std:: namespacelloyd2006-06-231-2/+2
* Use std::string::clear() rather than assign the empty string whenlloyd2006-06-232-6/+6
* Inline a number of small objects that are only used in a local contextlloyd2006-06-233-87/+70
* Add missing <memory> includes for files that use auto_ptrlloyd2006-06-232-0/+2
* Drop the old Extension type, which is now no longer used.lloyd2006-06-231-58/+0
* Use accessor functions for CRL_Entry, instead of having public datalloyd2006-06-234-11/+9
* Use Extensions for decoding a CRL entrylloyd2006-06-231-29/+11
* X509_CRL should throw an exception if the right option is set andlloyd2006-06-231-1/+1
* Use Extensions instead of handle_crl_extension in X509_CRLlloyd2006-06-231-46/+13
* The decode_from taking a bool wasn't actually usable, don'tlloyd2006-06-231-9/+1
* Respect the throw_on_unknown flaglloyd2006-06-231-2/+2
* Use Data_Store in X509_CRLlloyd2006-06-231-11/+21
* Use the Extensions class, remove PKCS10_Request::handle_v3_extensionlloyd2006-06-231-59/+4
* Move all the members of PKCS10_Request into a Data_Storelloyd2006-06-231-42/+66
* Make create_dn (from x509cert.cpp) a public function. Add alloyd2006-06-231-31/+56
* Add a new variant of Extensions::decode_from that doesn't thrown anlloyd2006-06-231-0/+8
* Drop X509_Certificate::handle_v3_extension, since that code islloyd2006-06-231-108/+3
* Make Alternative_Name an abstract base, from which the subjectlloyd2006-06-234-39/+68
* Add operator= and a copy constructor to Extensionslloyd2006-06-221-31/+40
* Add accessor and cloning functions to the Certificate_Extension objectslloyd2006-06-221-0/+38
* Use a switch instead of repeated if statements in the char<->digitlloyd2006-06-211-20/+26
* Turns out that DER_Cmp's comparison is exactly the same as the onelloyd2006-06-191-29/+1
* Use preincrement instead of postincrement inside of some loops (mostlylloyd2006-06-194-6/+6
* Inline the convert_string functionlloyd2006-06-191-21/+9
* Clean up convert_string to use the transcoding operation alwayslloyd2006-06-191-26/+8
* Add a UCS-2 to Latin-1 transcoding operation (only handles purelloyd2006-06-191-0/+26