RsaPublicKey class Null safety
The RSA public key implementation
- Inheritance
-
- Object
- RSAAsymmetricKey
- RSAPublicKey
- RsaPublicKey
Constructors
- RsaPublicKey(BigInt modulus, BigInt exponent)
Properties
- bytes → Uint8List
-
read-only
- e → BigInt?
-
Get public exponent e
@Deprecated('Use get publicExponent'), read-only, inherited
- exponent → BigInt?
-
final, inherited
- hashCode → int
-
The hash code for this object.
read-only, inherited
- modulus → BigInt?
-
final, inherited
- n → BigInt?
-
Get modulus n = p·q
read-only, inherited
- publicExponent → BigInt?
-
Get the public exponent.
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
encode(
) → String -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent 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) → RsaPublicKey