simple_rc4

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

simple rc4

simple_rc4 #

RC4 cryptor that encodes/decodes bytes and UTF8 strings.
Credit to https://github.com/zonble the original creator of this library.
The only difference: this handels mal formed list in decoding, by adding a default parameter {bool? allowMalformed} to the decoding function that allows mal formed List to prevent FormatException: Unexpected extension byte...
Usage #
The package provides a simple class, [RC4], just create an instance of it with
your key, and then pass your data that you want to do encoding/decoding.
A simple usage example:
import 'package:simple_rc4/simple_rc4.dart';

main() {
RC4 rc4 = new RC4('zonble');
String input = '中文';
var bytes = rc4.encodeBytes(utf8.encode(input));
print(bytes);
}
copied to clipboard
That's all! Enjoy!

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator