Table of Contents

Interface ISigner

Namespace
Enterprises.Org.BouncyCastle.Crypto
Assembly
Enterprises.BouncyCastle.Crypto.dll
public interface ISigner

Properties

AlgorithmName

string AlgorithmName { get; }

Property Value

string

Methods

BlockUpdate(byte[], int, int)

void BlockUpdate(byte[] input, int inOff, int length)

Parameters

input byte[]
inOff int
length int

GenerateSignature()

byte[] GenerateSignature()

Returns

byte[]

Init(bool, ICipherParameters)

void Init(bool forSigning, ICipherParameters parameters)

Parameters

forSigning bool
parameters ICipherParameters

Reset()

void Reset()

Update(byte)

void Update(byte input)

Parameters

input byte

VerifySignature(byte[])

bool VerifySignature(byte[] signature)

Parameters

signature byte[]

Returns

bool