Last updated:
0 purchases
rsis
rsis #
RSIS - Reverse Swap Index Shifting (Cipher Algorithm)
Introduction #
Package to perform the RSIS Cipher Technique. This algorithm was created by Gautham Vijayaraj
It's a basic implementation of the algorithm in the Dart language of the following API. To know more about this algorithm, Visit here cryptify. This app explains the working of the algorithm.
You can encrypt and decrypt texts using this algorithm.
Installation #
dependecies:
rsis: 0.0.6
copied to clipboard
Example #
See example/main.dart
import 'package:rsis/rsis.dart';
void main() {
String text="Hello this a test!";
String enc = Rsis.encrypt(text:text);
print(enc); // prints : GFJ/^_cEmga8#[3Gir(0)6-8-7-2-8-7-5-16-5-6-5-8-5-3-9-2-9-9
String dec = Rsis.decrypt(text:enc);
print(dec); // prints : Hello this a test!
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.