C# Class Keyczar.Util.WebSafeBase64

Encodes bytes into websafe base 64
Mostrar archivo Open project: jbtule/keyczar-dotnet Class Usage Examples

Public Methods

Method Description
Decode ( char input ) : Byte[]

Decodes the specified input.

Encode ( byte input ) : char[]

Encodes the specified input.

Private Methods

Method Description
GetByte ( int i ) : byte
IsWhiteSpace ( int i ) : bool
WebSafeBase64 ( ) : System

Method Details

Decode() public static method

Decodes the specified input.
public static Decode ( char input ) : Byte[]
input char The input.
return Byte[]

Encode() public static method

Encodes the specified input.
public static Encode ( byte input ) : char[]
input byte The input.
return char[]