SEED_cbc_encrypt function

  1. @Native<Void Function(Pointer<UnsignedChar>, Pointer<UnsignedChar>, Size, Pointer<seed_key_st>, Pointer<UnsignedChar>, Int)>(ffi.Pointer<ffi.UnsignedChar>, ffi.Pointer<ffi.UnsignedChar>, ffi.Size, ffi.Pointer<seed_key_st>, ffi.Pointer<ffi.UnsignedChar>, ffi.Int)>()
void SEED_cbc_encrypt(
  1. Pointer<UnsignedChar> in$,
  2. Pointer<UnsignedChar> out,
  3. int len,
  4. Pointer<seed_key_st> ks,
  5. Pointer<UnsignedChar> ivec,
  6. int enc,
)

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Size,
    ffi.Pointer<seed_key_st>,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Int,
  )
>()
external void SEED_cbc_encrypt(
  ffi.Pointer<ffi.UnsignedChar> in$,
  ffi.Pointer<ffi.UnsignedChar> out,
  int len,
  ffi.Pointer<seed_key_st> ks,
  ffi.Pointer<ffi.UnsignedChar> ivec,
  int enc,
);