encrypt method
returns encrypted message
Implementation
String encrypt(String val) {
List<int> bytes = const Utf8Encoder().convert(val);
return const Base64Encoder().convert(const Utf8Encoder()
.convert(((readBytes(Uint8List.fromList(bytes)) * e) % on).toString()));
}