/ZAC

Zech's Array Cipher. Also known as Z.A.C. My very own cipher.

Primary LanguageGo

Zech's Array Cipher also known as Z.A.C

Author

This is my own cipher. Same idea of Multidimentional Array in programming languages.

Zech Array 0'9

Blank 0 1 2 3 4 5 6 7 8 9
Z . , ? 0 1 2 3 4 5
E 6 7 8 9 A B C D E F
C G H I J K L M N O P
H Q R S T U V W X Y Z

Encode:

  • print name of array
  • print position

Decode:

  • find the value of name of array and it's position

Example

Encode: Zech

Z = H[9] -> H9

e = E[8] -> e8

c = E[6] -> e6

h = C[1] -> c1

Therefore, Zech = H9e8e6c1

Decode: E5h1c8c7

E5 = B

h1 = r

c8 = o

c7 = n

Therefore, E5h1c8c7 = Bron

Special Thanks To:

@ShellTear - Code Implementation in Go Lang