gpt4 book ai didi

c# - 如何手动处置 RSACryptoServiceProvider?

转载 作者:行者123 更新时间:2023-11-30 12:53:23 26 4
gpt4 key购买 nike

我在 MSDN( see Important note ) 上读到必须处理 RSACryptoServiceProvider。他们给出了例子:

using (RSACryptoServiceProvider RSA = new RSACryptoServiceProvider())

现在我正在尝试将 RSACryptoServiceProvider 包含到 MyClass 中,以便在多种方法中使用它。使用此设置我无法使用 using 语句。

相反,我尝试在合适的时间调用 RSACryptoServiceProvider 对象的 .Dispose() 方法,但随后我收到编译错误消息:

`System.Security.Cryptography.AsymmetricAlgorithm.Dispose(bool)' is inaccessible due to its protection level

RSACryptoServiceProvider 的使用时间是否不应超过一个函数调用(使用 using 语句)?

我该如何解决这个问题,是不是让 Dispose 调用成为一个选项?

最佳答案

Clear方法看起来会调用 dispose 方法:

This method is a simple call to the IDisposable.Dispose method. Calling Dispose allows the resources used by the AsymmetricAlgorithm class to be reallocated for other purposes. For more information about Dispose, see Cleaning Up Unmanaged Resources.

关于c# - 如何手动处置 RSACryptoServiceProvider?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2480585/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com