<PackageReference Include="Microsoft.Bcl.Cryptography" Version="11.0.0-preview.4.26230.115" />

System.Security.Cryptography.PinAndClear

namespace System.Security.Cryptography { public sealed class PbeParameters { public PbeEncryptionAlgorithm EncryptionAlgorithm { get; } public HashAlgorithmName HashAlgorithm { get; } public int IterationCount { get; } public PbeParameters(PbeEncryptionAlgorithm encryptionAlgorithm, HashAlgorithmName hashAlgorithm, int iterationCount); } } namespace System.Security.Cryptography { internal struct PinAndClear : IDisposable { public void Dispose(); } }