Interface ICharToByteConverter
- Namespace
- Org.BouncyCastle.Crypto
- Assembly
- BouncyCastle.Cryptography.dll
Interface for a converter that produces a byte encoding for a char array.
public interface ICharToByteConverter
Properties
Name
The name of the conversion.
string Name { get; }
Property Value
Methods
Convert(char[])
Return a byte encoded representation of the passed in password.
byte[] Convert(char[] password)
Parameters
passwordchar[]the characters to encode.
Returns
- byte[]