RSA_padding_check_none function

  1. @Native<Int Function(Pointer<UnsignedChar>, Int, Pointer<UnsignedChar>, Int, Int)>(ffi.Pointer<ffi.UnsignedChar>, ffi.Int, ffi.Pointer<ffi.UnsignedChar>, ffi.Int, ffi.Int)>()
int RSA_padding_check_none(
  1. Pointer<UnsignedChar> to,
  2. int tlen,
  3. Pointer<UnsignedChar> f,
  4. int fl,
  5. int rsa_len,
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Int,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Int,
    ffi.Int,
  )
>()
external int RSA_padding_check_none(
  ffi.Pointer<ffi.UnsignedChar> to,
  int tlen,
  ffi.Pointer<ffi.UnsignedChar> f,
  int fl,
  int rsa_len,
);