We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, is it possible that you will add support for PKCS12 in the near future? Thank you.
The text was updated successfully, but these errors were encountered:
@Jakub91 What are your requirements ?
Sorry, something went wrong.
@Jakub91 PKCS12 creation is now available via https://github.com/Ephenodrom/Dart-Basic-Utils.
Here is an example with the corresponding openssl call :
var privateKey = ''; // PEM var chain = ['','','']; // LIST OF PEM // openssl pkcs12 -export -passout pass:Beavis -out bundle.pfx -inkey priv.key -in chain.pem var bytes = Pkcs12Utils.generatePkcs12( privateKey, chain, password: 'Beavis' );
#187
No branches or pull requests
Hello, is it possible that you will add support for PKCS12 in the near future? Thank you.
The text was updated successfully, but these errors were encountered: