<PackageReference Include="BouncyCastle.Cryptography" Version="2.6.1" />

ICharToByteConverter

public interface ICharToByteConverter
Interface for a converter that produces a byte encoding for a char array.
namespace Org.BouncyCastle.Crypto { public interface ICharToByteConverter { string Name { get; } byte[] Convert(char[] password); } }