I can't seem to find a way to accomplish what SecPKCS12Import() do开发者_如何学运维es in the classes of Monotouch.Security. Is it wrapped somewhere? Thanks.
Try referencing the Mono.Security assembly and then:
using Mono.Security.X509;
[...]
new PKCS12 (byte [] { ... });
// or
PKCS12.LoadFromFile (...)
精彩评论