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

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

Introduction

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

The text is from its open source code.

Constructor

ECDSASigner()
Default configuration, random K values.
ECDSASigner(DSAKCalculator kCalculator)
Configuration with an alternate, possibly deterministic calculator of K.

Method

BigInteger[]generateSignature(byte[] message)
generate a signature for the given message using the key we were initialised with.
voidinit(boolean forSigning, CipherParameters param)
booleanverifySignature(byte[] message, BigInteger r, BigInteger s)
return true if the value r and s represent a DSA signature for the passed in message (for standard DSA the message should be a SHA-1 hash of the real message to be verified).