ASN1_item_digest function

  1. @Native<Int Function(Pointer<ASN1_ITEM_st>, Pointer<evp_md_st>, Pointer<Void>, Pointer<UnsignedChar>, Pointer<UnsignedInt>)>(ffi.Pointer<ASN1_ITEM_st>, ffi.Pointer<evp_md_st>, ffi.Pointer<ffi.Void>, ffi.Pointer<ffi.UnsignedChar>, ffi.Pointer<ffi.UnsignedInt>)>()
int ASN1_item_digest(
  1. Pointer<ASN1_ITEM_st> it,
  2. Pointer<evp_md_st> type,
  3. Pointer<Void> data,
  4. Pointer<UnsignedChar> md,
  5. Pointer<UnsignedInt> len,
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<ASN1_ITEM_st>,
    ffi.Pointer<evp_md_st>,
    ffi.Pointer<ffi.Void>,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Pointer<ffi.UnsignedInt>,
  )
>()
external int ASN1_item_digest(
  ffi.Pointer<ASN1_ITEM_st> it,
  ffi.Pointer<evp_md_st> type,
  ffi.Pointer<ffi.Void> data,
  ffi.Pointer<ffi.UnsignedChar> md,
  ffi.Pointer<ffi.UnsignedInt> len,
);