CryptoRSAPrivateKey class

Inheritance
  • Object
  • RSAAsymmetricKey
  • RSAPrivateKey
  • CryptoRSAPrivateKey

Constructors

CryptoRSAPrivateKey(BigInt modulus, BigInt privateExponent, BigInt? p, BigInt? q)

Properties

d BigInt?
Get private exponent d = e^-1
no setterinherited
exponent BigInt?
finalinherited
hashCode int
The hash code for this object.
no setterinherited
modulus BigInt?
finalinherited
n BigInt?
Get modulus n = p·q
no setterinherited
p BigInt?
finalinherited
privateExponent BigInt?
Get the private exponent (d)
no setterinherited
pubExponent BigInt?
Get the public exponent (e)
no setterinherited
public CryptoRSAPublicKey
no setter
publicExponent BigInt?
Get the public exponent (e)
no setterinherited
q BigInt?
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

encode() String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

decode(String encodedKey) CryptoRSAPrivateKey