multi_cipher

Last updated:

0 purchases

multi_cipher Image
multi_cipher Images
Add to Cart

Description:

multi cipher

Multi Cipher #
Encrypt and Decrypt string using classical ciphers.
Example #

Using Affine cipher.

import 'package:multi_cipher/classical_cipher.dart';

void main() {
var affine = Affine(3, 5);
String encrypt = affine.encrypt("Hello World!");
String decrypt = affine.decrypt(encrypt);

print(encrypt); // Armmv Tvemo!
print(decrypt); // Hello World!
}
copied to clipboard

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.