forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayfaircipher.go
178 lines (142 loc) · 3.79 KB
/
playfaircipher.go
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
The Playfair cipher( Playfair square ) encrypts pairs of letters (digraphs),
instead of single letters as in the simple substitution cipher. The Playfair
is thus significantly harder to break since the frequency analysis used for
simple substitution ciphers does not work with it.
*/
package main
import (
"fmt"
"bufio"
"os"
)
// Global variables
var plaintext string
var key string
var keyMatrix[5][5] string
var output string
var list[4] int
var alph string = "abcdefghijklmnopqrstuvwxyz"
//This function will form the 5x5 key Matrix
func keyTable() {
i:=0
j:=0
c:=0
var index[26] int;
//initializing the array to 0 as it stores garbage values
for z:=0;z<26;z++ {
index[z] = 0;
}
var hash[100] int;
//marking the alphabets in key
for i=0;i<len(key);i++ {
if(key[i] != 'j'){
for j=0;j<26;j++ {
if(key[i] == alph[j]){
index[j] = 2;
hash[c] = j;
c++;
}
}
}
}
//marking alphabetic j
index[9] = 1;
i = 0;
j = 0;
//adding the marked alphabets
for k:=0;k<len(key);k++ {
if(index[hash[k]] == 2) {
index[hash[k]] -= 1;
keyMatrix[i][j] = string(key[k]);
j++;
if(j==5){
i++;
j=0;
}
}
}
//adding the remaining alphabets
for k:=0;k<26;k++ {
if(index[k] == 0){
keyMatrix[i][j] = string(alph[k]);
j++;
if(j==5){
i++;
j=0;
}
}
}
}
/* This function searches for the characters of the digraph in key matrix
generated and gives their position*/
func search(x,y string) {
//replacing j with i
if(x == "j'") {
x = "i";
}else if(y =="j") {
y = "i";
}
//returning the positions of characters through list
for i:=0;i<5;i++ {
for j:=0;j<5;j++ {
if(keyMatrix[i][j] == x) {
list[0] = i;
list[1] = j;
}else if(keyMatrix[i][j] == y) {
list[2] = i;
list[3] = j;
}
}
}
}
// This function ciphers the plane text
func cipher() {
i := 0;
//cipher the plain text with the key matrix we built
for i<len(plaintext) {
search(string(plaintext[i]),string(plaintext[i+1]))
if(list[0] == list[2]) {
output += string(keyMatrix[list[0]][(list[1]+1)%5]);
output += string(keyMatrix[list[0]][(list[3]+1)%5]);
} else if(list[1] == list[3]){
output += string(keyMatrix[(list[0]+1)%5][list[1]]);
output += string(keyMatrix[(list[2]+1)%5][list[1]]);
}else{
output += string(keyMatrix[list[0]][list[3]]);
output += string(keyMatrix[list[2]][list[1]]);
}
i+=2;
}
}
// This function will encript the plaintext to cipher in playfail cipher
func playfaircipher() {
if(len(plaintext)%2 != 0 ){
plaintext += "z";
}
//generating key table
keyTable();
//cipher the plane text
cipher();
}
//driver function
func main() {
// Taking the plaintext as input from user
fmt.Print("Enter the plaintext : ")
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
plaintext = scanner.Text()
// Taking the keyword as input from the user
fmt.Print("Enter the keyword : ")
scanner.Scan()
key = scanner.Text()
playfaircipher()
// printing the cipher text
fmt.Print("The cipher text is : ",output)
}
/*
Sample I/O :
Enter the plaintext : hello
Enter the keyword : world
The cipher text is : kbekdv
*/