-
-
Notifications
You must be signed in to change notification settings - Fork 72
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
Add function for dumping P12 files #20
Comments
I think it largely depends on what software you want to be able to read the p12 files. For instance, many of the good algorithm choices for key derivation (PBKDF2) and encryption (AES 128) are only specified in relatively new versions of the PKCS12 spec, and many software platforms don't support them. The algorithms supported by pretty much any software for reading p12s often are so weak they add a false sense of security. So I think the complexity here is going to be determining what the different algorithm profiles for p12 files should be made available and documenting what they work with. Technically all of the pieces are available here. |
Hi, gaving gone through several protocols (SCEP, OCSP) used in the enterprise I concluded most of them don't achieve what they're supposed to nowadays security-wise. My interest was using P12 bundle to distribute key-certificate pair for a device and transport it over already secured transport (eg. HTTPS). So the only real reason for P12 would be the import compatibility with Firefox and smartphone credential store. |
I also need to generate pkcs12, so I spent some time creating such code. Do you have any suggestions where should I insert it ? In my opinion, the most convenient place is keys.py or _asymmetric.py. |
All of the other |
Hi, P12 parsing seems to be there but it's not yet possible to generate P12 bundles. Is it much of an effort to add the feature?
The text was updated successfully, but these errors were encountered: