timingsafe_bcmp method

int timingsafe_bcmp(
  1. Pointer<Void> b1,
  2. Pointer<Void> b2,
  3. int n
)

Implementation

int timingsafe_bcmp(
  ffi.Pointer<ffi.Void> b1,
  ffi.Pointer<ffi.Void> b2,
  int n,
) {
  return _timingsafe_bcmp(
    b1,
    b2,
    n,
  );
}