decrypt method
Decrypt the packet data.
Implementation
String decrypt() {
if (encrypted == null) throw Exception('No encrypted data');
final k = Kaalka(timeKey);
return k.decrypt(encrypted!);
}
Decrypt the packet data.
String decrypt() {
if (encrypted == null) throw Exception('No encrypted data');
final k = Kaalka(timeKey);
return k.decrypt(encrypted!);
}