Table of Contents

Interface IBase64UrlEncoder

Namespace
JWT
Assembly
Coherence.JWT.dll

Represents a base64 encoder/decoder.

public interface IBase64UrlEncoder

Methods

Decode(string)

Decodes the base64 string to a byte array.

byte[] Decode(string input)

Parameters

input string

Returns

byte[]

Encode(byte[])

Encodes the byte array to a base64 string.

string Encode(byte[] input)

Parameters

input byte[]

Returns

string