simple_rc4 0.1.4 copy "simple_rc4: ^0.1.4" to clipboard
simple_rc4: ^0.1.4 copied to clipboard

outdated

Yet another RC4 cryptor that encodes/decodes bytes and UTF8 strings.

example/main.dart

import 'dart:convert';
import 'package:simple_rc4/simple_rc4.dart';

main() {
  RC4 rc4 = new RC4('zonble');
  String input = '中文';
  var bytes = rc4.encodeBytes(utf8.encode(input));
  rc4 = new RC4('zonble');
  var output = rc4.decodeBytes(bytes);
  print(output);
}
1
likes
0
pub points
79%
popularity

Publisher

verified publisherzonble.net

Yet another RC4 cryptor that encodes/decodes bytes and UTF8 strings.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on simple_rc4