PSSSigner class

Implemented types

Constructors

PSSSigner(AsymmetricBlockCipher _cipher, Digest _contentDigest, Digest _mgfDigest, {int trailer = TRAILER_IMPLICIT})

Properties

algorithmName String
Get this algorithm's standard name.
no setteroverride
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

generateSignature(Uint8List message) PSSSignature
Sign the passed in message (usually the output of a hash function)
override
init(bool forSigning, CipherParameters params) → void
Init the signer with its initialization params. The type of CipherParameters depends on the algorithm being used (see the documentation of each implementation to find out more).
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
reset() → void
Reset the signer to its original state.
override
toString() String
A string representation of this object.
inherited
verifySignature(Uint8List message, covariant PSSSignature signature) bool
Verify the message against the signature.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

factoryConfig → FactoryConfig
Intended for internal use.
final

Constants

TRAILER_IMPLICIT → const int