ssh_get_fingerprint_hash method

Pointer<Int8> ssh_get_fingerprint_hash(
  1. int type,
  2. Pointer<Uint8> hash,
  3. int len
)

Implementation

ffi.Pointer<ffi.Int8> ssh_get_fingerprint_hash(
  int type,
  ffi.Pointer<ffi.Uint8> hash,
  int len,
) {
  return _ssh_get_fingerprint_hash(
    type,
    hash,
    len,
  );
}