2009-11-22 19:56:38 UTC
I've just uploaded version 0.4.3 which provides support for wrapping PCKS12_create(). I've also added the ability to write a pfx file.
Here's what it looks like for usage:
using (var pfx = new PKCS12(password, privateKey, certificate, caCertificates)) {
using (BIO bout = BIO.File(pfx_path, "w")) {
pfx.Write(bout);
}
}
Let me know if this works or doesn't, I didn't have any good use-cases for my own testing.
-Frank