DES_ofb64_encrypt function

  1. @Native<Void Function(Pointer<UnsignedChar>, Pointer<UnsignedChar>, Long, Pointer<DES_ks>, Pointer<Pointer<UnsignedChar>>, Pointer<Int>)>(ffi.Pointer<ffi.UnsignedChar>, ffi.Pointer<ffi.UnsignedChar>, ffi.Long, ffi.Pointer<DES_ks>, ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>>, ffi.Pointer<ffi.Int>)>()
void DES_ofb64_encrypt(
  1. Pointer<UnsignedChar> in$,
  2. Pointer<UnsignedChar> out,
  3. int length,
  4. Pointer<DES_ks> schedule,
  5. Pointer<Pointer<UnsignedChar>> ivec,
  6. Pointer<Int> num,
)

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.Pointer<ffi.Int>,
  )
>()
external void DES_ofb64_encrypt(
  ffi.Pointer<ffi.UnsignedChar> in$,
  ffi.Pointer<ffi.UnsignedChar> out,
  int length,
  ffi.Pointer<DES_ks> schedule,
  ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>> ivec,
  ffi.Pointer<ffi.Int> num,
);