OpenSSHKeyPairs.unencrypted constructor

OpenSSHKeyPairs.unencrypted({
  1. required List<Uint8List> publicKeys,
  2. required Uint8List privateKeyBlob,
})

Implementation

OpenSSHKeyPairs.unencrypted({
  required this.publicKeys,
  required this.privateKeyBlob,
})  : cipherName = 'none',
      kdfName = 'none',
      kdfOptions = null;