sodium_compare method

int sodium_compare(
  1. Pointer<UnsignedChar> b1_,
  2. Pointer<UnsignedChar> b2_,
  3. int len
)

Implementation

int sodium_compare(
  ffi.Pointer<ffi.UnsignedChar> b1_,
  ffi.Pointer<ffi.UnsignedChar> b2_,
  int len,
) {
  return _sodium_compare(
    b1_,
    b2_,
    len,
  );
}