SEED_cbc_encrypt function
- @Native<Void Function(Pointer<UnsignedChar>, Pointer<UnsignedChar>, Size, Pointer<seed_key_st>, Pointer<UnsignedChar>, Int)>(ffi.Pointer<ffi.UnsignedChar>, ffi.Pointer<ffi.UnsignedChar>, ffi.Size, ffi.Pointer<seed_key_st>, ffi.Pointer<ffi.UnsignedChar>, ffi.Int)>()
void
SEED_cbc_encrypt(
- Pointer<UnsignedChar> in$,
- Pointer<UnsignedChar> out,
- int len,
- Pointer<seed_key_st> ks,
- Pointer<UnsignedChar> ivec,
- int enc,
)
Implementation
@ffi.Native<
ffi.Void Function(
ffi.Pointer<ffi.UnsignedChar>,
ffi.Pointer<ffi.UnsignedChar>,
ffi.Size,
ffi.Pointer<seed_key_st>,
ffi.Pointer<ffi.UnsignedChar>,
ffi.Int,
)
>()
external void SEED_cbc_encrypt(
ffi.Pointer<ffi.UnsignedChar> in$,
ffi.Pointer<ffi.UnsignedChar> out,
int len,
ffi.Pointer<seed_key_st> ks,
ffi.Pointer<ffi.UnsignedChar> ivec,
int enc,
);