EVP_DecodeUpdate function

  1. @Native<Int Function(Pointer<evp_Encode_Ctx_st>, Pointer<UnsignedChar>, Pointer<Int>, Pointer<UnsignedChar>, Int)>(ffi.Pointer<evp_Encode_Ctx_st>, ffi.Pointer<ffi.UnsignedChar>, ffi.Pointer<ffi.Int>, ffi.Pointer<ffi.UnsignedChar>, ffi.Int)>()
int EVP_DecodeUpdate(
  1. Pointer<evp_Encode_Ctx_st> ctx,
  2. Pointer<UnsignedChar> out,
  3. Pointer<Int> outl,
  4. Pointer<UnsignedChar> in$,
  5. int inl,
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<evp_Encode_Ctx_st>,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Pointer<ffi.Int>,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Int,
  )
>()
external int EVP_DecodeUpdate(
  ffi.Pointer<evp_Encode_Ctx_st> ctx,
  ffi.Pointer<ffi.UnsignedChar> out,
  ffi.Pointer<ffi.Int> outl,
  ffi.Pointer<ffi.UnsignedChar> in$,
  int inl,
);