UNPKG

crypto-utils-js

Version:

JavaScript library for encryption / decryption.

12 lines (10 loc) 329 B
/* * 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 */ export { rotx } from './rot-x';