DES_cbc_encrypt function
- @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(
- Pointer<UnsignedChar> input,
- Pointer<UnsignedChar> output,
- int length,
- Pointer<DES_ks> schedule,
- Pointer<Pointer<UnsignedChar>> ivec,
- 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,
);