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

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

example/main.dart

import 'dart:convert';

import 'package:simple_rc4/simple_rc4.dart';

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

Publisher

verified publisherzonble.net

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

More

Packages that depend on simple_rc4