AES_cfb8_encrypt function
- @Native<Void Function(Pointer<UnsignedChar>, Pointer<UnsignedChar>, Size, Pointer<aes_key_st>, Pointer<UnsignedChar>, Pointer<Int>, Int)>(ffi.Pointer<ffi.UnsignedChar>, ffi.Pointer<ffi.UnsignedChar>, ffi.Size, ffi.Pointer<aes_key_st>, ffi.Pointer<ffi.UnsignedChar>, ffi.Pointer<ffi.Int>, ffi.Int)>()
void
AES_cfb8_encrypt(
- Pointer<UnsignedChar> in$,
- Pointer<UnsignedChar> out,
- int length,
- Pointer<aes_key_st> key,
- Pointer<UnsignedChar> ivec,
- Pointer<Int> num,
- int enc,
)
Implementation
@ffi.Native<
ffi.Void Function(
ffi.Pointer<ffi.UnsignedChar>,
ffi.Pointer<ffi.UnsignedChar>,
ffi.Size,
ffi.Pointer<aes_key_st>,
ffi.Pointer<ffi.UnsignedChar>,
ffi.Pointer<ffi.Int>,
ffi.Int,
)
>()
external void AES_cfb8_encrypt(
ffi.Pointer<ffi.UnsignedChar> in$,
ffi.Pointer<ffi.UnsignedChar> out,
int length,
ffi.Pointer<aes_key_st> key,
ffi.Pointer<ffi.UnsignedChar> ivec,
ffi.Pointer<ffi.Int> num,
int enc,
);