RsaPssPrivateKey class Null safety

Annotations

Properties

hashCode int
The hash code for this object.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

exportJsonWebKey() Future<Map<String, dynamic>>
exportPkcs8Key() Future<Uint8List>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
signBytes(List<int> data, int saltLength) Future<Uint8List>
Notes on saltLength
signStream(Stream<List<int>> data, int saltLength) Future<Uint8List>
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

generateKey(int modulusLength, BigInt publicExponent, Hash hash) Future<KeyPair<RsaPssPrivateKey, RsaPssPublicKey>>
importJsonWebKey(Map<String, dynamic> jwk, Hash hash) Future<RsaPssPrivateKey>
importPkcs8Key(List<int> keyData, Hash hash) Future<RsaPssPrivateKey>