crypto-utils-js
Version:
JavaScript library for encryption / decryption.
15 lines (14 loc) • 531 B
JavaScript
;
/*
* RotX is a simple letter substitution cipher
* that replaces a letter with the X letter
* after it in the alphabet. ROT-X is a special
* case of the Caesar cipher
*
* A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
* N O P Q R S T U V W X Y Z A B C D E F G H I J K L M
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.rotx = void 0;
var rot_x_1 = require("./rot-x");
Object.defineProperty(exports, "rotx", { enumerable: true, get: function () { return rot_x_1.rotx; } });