xorEncodeStringToBytes method

List<int> xorEncodeStringToBytes(
  1. String content, {
  2. String? key,
})

string to bytes xor encryption

Implementation

List<int> xorEncodeStringToBytes(String content, {String? key}) {
  this.key = key ?? this.key;
  if (this.key != null && this.key!.isNotEmpty) {
    return _xor(utf8.encode(content), utf8.encode(this.key!));
  } else {
    return _encrypt(utf8.encode(content));
  }
}