Table of Contents

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

string

Methods

Convert(char[])

Return a byte encoded representation of the passed in password.

byte[] Convert(char[] password)

Parameters

password char[]

the characters to encode.

Returns

byte[]