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);
}
}