Java org.bouncycastle.crypto Signer fields, constructors, methods, implement or subclass

Example usage for Java org.bouncycastle.crypto Signer fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.bouncycastle.crypto Signer.

The text is from its open source code.

Implementation

org.bouncycastle.crypto.Signer has the following implementations.
Click this link to see all its implementation.

Method

byte[]generateSignature()
generate a signature for the message we've been loaded with using the key we were initialised with.
voidinit(boolean forSigning, CipherParameters param)
Initialise the signer for signing or verification.
voidupdate(byte[] in, int off, int len)
update the internal digest with the byte array in
voidupdate(byte b)
update the internal digest with the byte b
booleanverifySignature(byte[] signature)
return true if the internal state represents the signature described in the passed in array.