使用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);
答案 0 :(得分:0)
在我的情况下 - 我发现了问题,在VS调试器之外的调试会话期间只花了太长时间,操作以正常可接受的速度执行。