使用ContentInfo(System.Security.Cryptography.Pkcs.ContentInfo)下面的代码确实是花费很长的时间来执行。
有什么我可以做,以加快步伐?
byte[] fileContents = File.ReadAllBytes(fileName );
var contentInfo = new ContentInfo(fileContents);
var signedCms = new SignedCms(contentInfo);
signedCms.Decode(fileContents);
signedCms.RemoveSignature(0);