DES_cbc_encrypt function

  1. @Native<Void Function(Pointer<UnsignedChar>, Pointer<UnsignedChar>, Long, Pointer<DES_ks>, Pointer<Pointer<UnsignedChar>>, Int)>(ffi.Pointer<ffi.UnsignedChar>, ffi.Pointer<ffi.UnsignedChar>, ffi.Long, ffi.Pointer<DES_ks>, ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>>, ffi.Int)>()
void DES_cbc_encrypt(
  1. Pointer<UnsignedChar> input,
  2. Pointer<UnsignedChar> output,
  3. int length,
  4. Pointer<DES_ks> schedule,
  5. Pointer<Pointer<UnsignedChar>> ivec,
  6. int enc,
)

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Long,
    ffi.Pointer<DES_ks>,
    ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>>,
    ffi.Int,
  )
>()
external void DES_cbc_encrypt(
  ffi.Pointer<ffi.UnsignedChar> input,
  ffi.Pointer<ffi.UnsignedChar> output,
  int length,
  ffi.Pointer<DES_ks> schedule,
  ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>> ivec,
  int enc,
);