-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.js
37 lines (29 loc) · 1.08 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//NAME: ZANIF SANDY (ZAYSLASH)
/*
ToDo -----------------------------------------
Simple Substitution Cipher
Baconian Cipher
Hill Cipher
Running Key Cipher
----------------------------------------------- */
function Cipher_loaders(){ //COLLECTION OF CIPHERS
document.write('<script src="CipherCollection/caesarCipher.js"></script>');
document.write('<script src="CipherCollection/ROT13Cipher.js"></script>');
document.write('<script src="CipherCollection/AutoKeyCipher.js"></script>');
document.write('<script src="CipherCollection/vigenereCipher.js"></script>');
document.write('<script src="CipherCollection/ATBASHCipher.js"></script>');
document.write('<script src="CipherCollection/affineCipher.js"></script>');
}
function UI(){
document.write('<script src="UIdependencies.js"></script>'); //MENU USER INTTERFACE
document.write('<script src="fileHandle.js"></script>'); //DEALS WITH LOCAL FILES
}
function dataSrtuctures(){
document.write('<script src="stacks.js"></script>'); // STACKS
}
var Mainloaders = function(){
Cipher_loaders();
dataSrtuctures();
UI();
}
Mainloaders();