Time slots app prototype
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
622 B

import * as ciphers from "./encrypter";
import * as deciphers from "./decrypter";
import * as modes from "./modes/list.json";
function getCiphers() {
return Object.keys(modes);
}
export const Cipher = ciphers.createCipher;
export const Cipheriv = ciphers.createCipheriv;
export const Decipher = deciphers.createDecipher;
export const Decipheriv = deciphers.createDecipheriv;
export { getCiphers };
export const createCipher = ciphers.createCipher;
export const createCipheriv = ciphers.createCipheriv;
export const createDecipher = deciphers.createDecipher;
export const createDecipheriv = deciphers.createDecipheriv;