encryptInit method

Pointer<Void> encryptInit(
  1. int mode,
  2. int isEncrypt,
  3. Pointer<Uint8> key,
  4. int keySize,
  5. Pointer<Uint8> iv,
)

AES

Implementation

ffi.Pointer<ffi.Void> encryptInit(
  int mode,
  int isEncrypt,
  ffi.Pointer<ffi.Uint8> key,
  int keySize,
  ffi.Pointer<ffi.Uint8> iv,
) {
  return _encryptInit(
    mode,
    isEncrypt,
    key,
    keySize,
    iv,
  );
}