.NET ContentInfo处理时间过长

时间:2010-01-12 14:06:32

标签: c# .net security

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

1 个答案:

答案 0 :(得分:0)

在我的情况下 - 我发现了问题,在VS调试器之外的调试会话期间只花了太长时间,操作以正常可接受的速度执行。