ssh_pki_import_pubkey_file method

int ssh_pki_import_pubkey_file(
  1. Pointer<Int8> filename,
  2. Pointer<ssh_key> pkey
)

Implementation

int ssh_pki_import_pubkey_file(
  ffi.Pointer<ffi.Int8> filename,
  ffi.Pointer<ssh_key> pkey,
) {
  return _ssh_pki_import_pubkey_file(
    filename,
    pkey,
  );
}