OpenSshPrivateKey constructor

OpenSshPrivateKey(
  1. String cipherName,
  2. String kdfName,
  3. Uint8List kdf,
  4. Uint8List publicKeyBytes,
  5. Uint8List privateKeyBytes, [
  6. PvtTextSource? source,
])

Default constructor

Implementation

OpenSshPrivateKey(this.cipherName, this.kdfName, this.kdf,
    this.publicKeyBytes, this.privateKeyBytes,
    [this.source]);