encryptDataMD5 method
Hashes the provided data using MD5.
data: The data to hash.
Implementation
Future<String> encryptDataMD5({required String data}) {
return BouncyCastleSecurityPlatform.instance.encryptDataMD5(data);
}
Hashes the provided data using MD5.
data: The data to hash.Future<String> encryptDataMD5({required String data}) {
return BouncyCastleSecurityPlatform.instance.encryptDataMD5(data);
}