summaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* | | expand these comments a bitJean-Paul Calderone2009-07-252-6/+10
* | | whitespace twiddles and a semantic change to an untested codepath - report Py...Jean-Paul Calderone2009-07-251-8/+14
* | | nicer local namesJean-Paul Calderone2009-07-251-4/+4
* | | move locals up, add braces, other cosmeticsJean-Paul Calderone2009-07-251-10/+12
* | | twiddle whitespace, relocate local declsJean-Paul Calderone2009-07-241-10/+7
* | | crypto_PKey_Check this timeJean-Paul Calderone2009-07-241-4/+3
* | | another crypto_X509_CheckJean-Paul Calderone2009-07-241-4/+3
* | | use crypto_X509_Check, coz that's what we're doin'Jean-Paul Calderone2009-07-241-2/+2
* | | Switch to some more PyTuple APIs for simpler error handlingJean-Paul Calderone2009-07-241-7/+6
* | | use PyTuple_GetItem to simplify reference countingJean-Paul Calderone2009-07-241-7/+2
* | | move a variable declaration to the topJean-Paul Calderone2009-07-241-1/+1
* | | initialize a local to suppress a warningJean-Paul Calderone2009-07-241-1/+1
* | | M-x whitespace-cleanupJean-Paul Calderone2009-07-241-20/+19
* | | Only allocate a STACK_OF(X509) in crypto_PKCS12_export() when needed.Rick Dean2009-07-241-7/+8
* | | More fixes of STACK_OF(X509) in crypto_PKCS12_New().Rick Dean2009-07-241-7/+9
* | | Stop leaking a STACK_OF(X509) in crypto_PKCS12_export. Jean-Paul's find.Rick Dean2009-07-241-0/+1
* | | Stop leaking a STACK_OF(X509) on error cases of crypto_PKCS12_New(). Add a t...Rick Dean2009-07-241-3/+5
* | | Use PyString_CheckExact() in crypto_PKCS12_set_friendlyname(). Jean-Paul's f...Rick Dean2009-07-241-2/+2
* | | Fix return type of crypto_PKCS12_set_friendlyname(). Jean-Paul's find.Rick Dean2009-07-241-2/+2
* | | Convert cacerts to tuple() before type checking so iterators can't play games...Rick Dean2009-07-241-9/+9
* | | doc string fixRick Dean2009-07-211-1/+1
* | | Handle error cases of PySequence_Length() and PySequence_GetItem(). Add an t...Rick Dean2009-07-201-3/+6
* | | Change the API for setting and getting friendlyNames of PKCS12Rick Dean2009-07-202-6/+74
* | | Convert crypto_PKCS12Obj->cacerts to a tuple as Jean-Paul pointed out.Rick Dean2009-07-181-0/+6
* | | The PyObjets of struct crypto_PKCS12Obj are never NULL so stop checking.Rick Dean2009-07-182-16/+8
* | | Implemented some of the PKCS12 fixups requested by JP.Rick Dean2009-07-181-10/+9
* | | Fix warning. Silly comments about more correct datatype. Should our header ...Rick Dean2009-07-171-3/+3
* | | Documentation updates and a small test case addition.Rick Dean2009-07-171-28/+25
* | | convert PKCS12 to more modern type.Rick Dean2009-07-172-19/+37
* | | new branch is changes lp:~rick-fdd/pyopenssl/pkcs12_mod_and_export applied to...Rick Dean2009-07-173-9/+225
|/ /
* | A comment about this local, as recommended by rickJean-Paul Calderone2009-07-161-0/+5
* | minor tweaksJean-Paul Calderone2009-07-163-11/+7
* | Flush the error queue after a NID lookup failsJean-Paul Calderone2009-07-161-2/+9
* | It is bad to put a function call inside a macro - it might be evaluated more ...Jean-Paul Calderone2009-07-161-1/+2
* | Expose exception_from_error_queue in the most inelegant way; use this in the ...Jean-Paul Calderone2009-07-161-0/+12
* | Convert exception_from_error_queue() macros into a single function. Besides ...Rick Dean2009-07-0816-80/+63
* | Fix exception name.Rick Dean2009-07-081-1/+1
* | Handle exceptions. Fix some benign C compiler warnings.Rick Dean2009-07-081-3/+27
* | Add OpenSSL.rand.bytes() function to wrap RAND_bytes(). Test cases and docum...Rick Dean2009-07-071-0/+31
|/
* switch x509store initialization over to the module-based api as wellJean-Paul Calderone2009-07-042-8/+12
* some minimal pkcs7 and pkcs12 tests, and minor adjustments to their part of O...Jean-Paul Calderone2009-06-274-55/+93
* convert X509Extension to a type that can be instantiatedJean-Paul Calderone2009-06-272-36/+64
* convert X509Req to a type that can be instantiatedJean-Paul Calderone2009-06-272-24/+65
* convert X509Name to a type that can be instantiatedJean-Paul Calderone2009-06-272-27/+54
* This flag is totally wrong here, although for whatever reason it doesn't actu...Jean-Paul Calderone2009-06-271-1/+1
* convert X509 to a type that can be instantiatedJean-Paul Calderone2009-06-272-22/+65
* convert PKey to a type that can be instantiatedJean-Paul Calderone2009-06-273-31/+66
* Convert Context and Connection to real typesJean-Paul Calderone2009-05-273-121/+190
* Change docstrings from being C programmer oriented to being Python programmer...Jean-Paul Calderone2009-05-2714-523/+261
* Correctly handle extension initialization errorsJean-Paul Calderone2009-05-271-1/+1