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

System.Security.Cryptography.PbeParameters

public sealed class PbeParameters
Represents parameters to be used for Password-Based Encryption (PBE).
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); } }