1
- <?php
2
- // A mono-alphabetic cipher is a simple substitution cipher
3
- // https://www.101computing.net/mono-alphabetic-substitution-cipher/
4
-
5
- function monoAlphabeticCipher ($ key , $ alphabet , $ text ){
6
-
7
- $ cipherText = '' ; // the cipher text (can be decrypted and encrypted)
8
-
9
- if ( strlen ($ key ) != strlen ($ alphabet ) ) { return false ; } // check if the text length matches
10
- $ text = preg_replace ('/[0-9]+/ ' , '' , $ text ); // remove all the numbers
11
-
12
- for ( $ i = 0 ; $ i < strlen ($ text ); $ i ++ ){
13
- $ index = strripos ( $ alphabet , $ text [$ i ] );
14
- if ( $ text [$ i ] == " " ){ $ cipherText .= " " ; }
15
- else { $ cipherText .= ( ctype_upper ($ text [$ i ]) ? strtoupper ($ key [$ index ]) : $ key [$ index ] ); }
16
- }
17
- return $ cipherText ;
18
- }
19
-
20
- function maEncrypt ($ key , $ alphabet , $ text ){
21
-
22
- return monoAlphabeticCipher ($ key , $ alphabet , $ text );
23
-
24
- }
25
-
26
- function maDecrypt ($ key , $ alphabet , $ text ){
27
-
28
- return monoAlphabeticCipher ($ alphabet , $ key , $ text );
29
-
30
- }
31
-
32
- ?>
1
+ <?php
2
+
3
+ // A mono-alphabetic cipher is a simple substitution cipher
4
+ // https://www.101computing.net/mono-alphabetic-substitution-cipher/
5
+
6
+ function monoAlphabeticCipher ($ key , $ alphabet , $ text )
7
+ {
8
+ $ cipherText = '' ; // the cipher text (can be decrypted and encrypted)
9
+
10
+ if (strlen ($ key ) != strlen ($ alphabet )) {
11
+ return false ;
12
+ } // check if the text length matches
13
+ $ text = preg_replace ('/[0-9]+/ ' , '' , $ text ); // remove all the numbers
14
+
15
+ for ($ i = 0 ; $ i < strlen ($ text ); $ i ++) {
16
+ $ index = strripos ($ alphabet , $ text [$ i ]);
17
+ if ($ text [$ i ] == " " ) {
18
+ $ cipherText .= " " ;
19
+ } else {
20
+ $ cipherText .= ( ctype_upper ($ text [$ i ]) ? strtoupper ($ key [$ index ]) : $ key [$ index ] );
21
+ }
22
+ }
23
+ return $ cipherText ;
24
+ }
25
+
26
+ function maEncrypt ($ key , $ alphabet , $ text )
27
+ {
28
+ return monoAlphabeticCipher ($ key , $ alphabet , $ text );
29
+ }
30
+
31
+ function maDecrypt ($ key , $ alphabet , $ text )
32
+ {
33
+ return monoAlphabeticCipher ($ alphabet , $ key , $ text );
34
+ }
0 commit comments