cypher_encrypt library
Constants
- defaultSequence → const String
- Default substitution sequence (can be overridden by user).
Functions
-
cypherDecrypt(
String encoded, {String sequence = defaultSequence, int steps = 1}) → String - Decrypts a string encrypted with cypherEncrypt.
-
cypherEncrypt(
String input, {String sequence = defaultSequence, int steps = 1}) → String - Encrypts a plain string using substitution cipher with step control. Works directly on UTF-8, no Base64 involved.