CAST_cfb64_encrypt function

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

Implementation

@ffi.Native<
  ffi.Void Function(
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Long,
    ffi.Pointer<cast_key_st>,
    ffi.Pointer<ffi.UnsignedChar>,
    ffi.Pointer<ffi.Int>,
    ffi.Int,
  )
>()
external void CAST_cfb64_encrypt(
  ffi.Pointer<ffi.UnsignedChar> in$,
  ffi.Pointer<ffi.UnsignedChar> out,
  int length,
  ffi.Pointer<cast_key_st> schedule,
  ffi.Pointer<ffi.UnsignedChar> ivec,
  ffi.Pointer<ffi.Int> num,
  int enc,
);