-
Notifications
You must be signed in to change notification settings - Fork 2
/
lib.rs
58 lines (57 loc) · 1.21 KB
/
lib.rs
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
pub mod Cryptode {
pub mod alphabet;
pub mod cipher;
pub mod keygen;
pub mod morse;
pub mod substitute;
pub mod adfgvx;
pub mod affine;
pub mod autokey;
pub mod baconian;
pub mod caesar;
pub mod columnar_transposition;
pub mod common;
pub mod fractionated_morse;
pub mod hill;
pub mod playfair;
pub mod polybius;
pub mod porta;
pub mod railfence;
pub mod rot13;
pub mod scytale;
pub mod vigenere;
pub mod argon2_macros;
pub mod argon2i13;
pub mod argon2id13;
pub mod bcrypt;
pub mod decode_ascii;
pub mod hash_macros;
pub mod hmac;
pub mod keyexchange;
pub mod mac;
pub mod md5;
pub mod scrypt;
pub mod scryptsalsa208sha256;
pub mod sha1;
pub mod sha512;
pub mod siphash24;
pub mod aes;
pub mod another_rot13;
pub mod blake2b;
pub mod chacha;
pub mod diffie_hellman;
pub mod encryption;
pub mod kerninghan;
pub mod morse_code;
pub mod polybius;
pub mod rail_fence;
pub mod rot13;
pub mod salsa;
pub mod sha3;
pub mod sha256;
pub mod tea;
pub mod theoretical_rot;
pub mod transposition;
pub mod utils;
pub mod xor;
}