-
Notifications
You must be signed in to change notification settings - Fork 440
Support for in-memory key/cert #404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'd also add these: https://github.com/IdentityPython/pysaml2/blob/master/src/saml2/sigver.py#L325 As we know I/O disk is the most time consuming thing in IT infrastructures. Is there any code refactor about this current approach? |
I would like to load all |
If you are on linux, a |
This might be old, but I would like to add a use case for this: Say your application is packaged as a full Container, but the container shall not include secrets (at least not without encryption). As pysaml2 only supports reading from file, the key must first be stored inside the container. To improve security, allowing writes during runtime of a container is kinda discouraged but currently required for such scenarios. Would such a change be accepted? If yes, where could I start to provide a PR? |
Currently I see that you can set key_file and cert_file - however, this requires having the data on the filesystem.
In our case, we have the data in memory but it's not convenient to write it to disk. Is it possible to accept a base64-encoded string instead of a filepath?
The text was updated successfully, but these errors were encountered: