.NET ContentInfo时间太长处理(.NET ContentInfo taking too

2019-09-30 07:20发布

使用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);

Answer 1:

在我的情况 - 我想通了这个问题,它在调试会话期间只花费的时间太长,该VS调试器,在正常可接受的速度执行的操作之外。



文章来源: .NET ContentInfo taking too long to process
标签: c# .net security