SSHKeyPair class abstract

Implementers

Constructors

SSHKeyPair()

Properties

hashCode int
The hash code for this object.
no setterinherited
name String
name is the name of the algorithm used when saving the key. This only affects how the key is serialized.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String
type indicates not only the encoding of the key, but also the the algorithm used when signing. Until now only RSA keys have types that are different from name.
no setter

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
sign(Uint8List data) → SSHSignature
toPem() String
toPublicKey() → SSHHostKey
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

fromPem(String pemText, [String? passphrase]) List<SSHKeyPair>
isEncryptedPem(String pemText) bool