Table of Contents

Interface IAsymmetricAlgorithm

Namespace
JWT.Algorithms
Assembly
Coherence.JWT.dll

Represents an asymmetric algorithm to generate or validate JWT signature.

public interface IAsymmetricAlgorithm : IJwtAlgorithm
Inherited Members
Extension Methods

Methods

Verify(byte[], byte[])

Verifies provided byte array with provided signature.

bool Verify(byte[] bytesToSign, byte[] signature)

Parameters

bytesToSign byte[]

The data to verify

signature byte[]

The signature to verify with

Returns

bool