A_Check_EncryptionKey method

int A_Check_EncryptionKey(
  1. String decodeKey,
  2. String encryptionKey,
  3. int dwTimeoutms
)

Implementation

int A_Check_EncryptionKey(
  String decodeKey,
  String encryptionKey,
  int dwTimeoutms,
) {
  return _A_Check_EncryptionKey(
    decodeKey.toNativeUtf8().cast<ffi.Int8>(),
    encryptionKey.toNativeUtf8().cast<ffi.Int8>(),
    dwTimeoutms,
  );
}