A_Check_EncryptionKey method
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,
);
}