.net标准库上的SecureString的替代方案?

时间:2017-06-10 07:13:50

标签: c# .net-standard securestring

我有一个带扩展方法的.net框架4.7库,其中一个使用了一个securestring,但我想将这个库转换为.net Standard 1.6。但是,无法使用SecureString类型。

所以我想知道.net标准中是否有替代SecureString的方法。

感谢。

1 个答案:

答案 0 :(得分:11)

SecureString可通过System.Security.SecureString NuGet包用于 .NET Core 。此NuGet包当前不能在.NET标准库中使用,因为它的实现特定于.NET Core。要使用此包,您必须创建一个.NET Core库。

在.NET Standard 2.0中,此类型无需添加NuGet包即可使用,您可以在.NET标准库中使用它。