summaryrefslogtreecommitdiff
path: root/src/saml2/algsupport.py
Commit message (Collapse)AuthorAgeFilesLines
* Format code with black and isortIvan Kanakarakis2022-10-011-30/+34
| | | | Signed-off-by: Ivan Kanakarakis <ivan.kanak@gmail.com>
* Fix wrong identifiers for ecdsa algosMathieu Hinderyckx2020-08-111-5/+5
|
* Clean up unclosed files causing ResourceWarnings in testsJon Dufresne2017-10-111-4/+3
| | | | | | | * Use better subprocess functions to correctly close pipes. * When opening files, use a context manager to ensure file is closed in a deterministic way. * Close logging handlers
* Fix dsa-sha1 signature URLs.Andrew Wason2017-06-261-1/+1
|
* Used str.splitlines() when parsing list of algorithms from xmlsec. (For ↵Jeff Kyllo2016-08-011-1/+1
| | | | example, on Windows)
* Wait until xmlsec program completes to avoid zombiesJozef Knaperek2016-02-261-1/+2
| | | | | | | | | | | | | | | Popen was often used to execute the xmlsec program without calling wait() on the process file handler, which resulted in zombies being left for arbitrary time (depending on gc). Adding the wait() call as implemented by this fix should not cause any delays nor deadlocks since it is always run only after the program finishes - after stdout and stderr are read. It should thus not cause any regressions. For more info about Popen causing zombies, please see: http://stackoverflow.com/questions/2760652/how-to-kill-or-avoid-zombie-processes-with-subprocess-module https://lbolla.info/blog/2014/01/23/die-zombie-die
* Added algsupportRoland Hedberg2015-11-191-0/+76