forked from VoxelPixel/CiphersInPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRailFence.py
More file actions
182 lines (159 loc) · 4.55 KB
/
RailFence.py
File metadata and controls
182 lines (159 loc) · 4.55 KB
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
179
180
181
182
import re
def cipher_encryption():
msg = input("Enter message: ")
rails = int(input("Enter number of rails: "))
# removing white space from message
msg = msg.replace(" ", "")
# creating an empty matrix
railMatrix = []
for i in range(rails):
railMatrix.append([])
for row in range(rails):
for column in range(len(msg)):
railMatrix[row].append('.')
# inner for
# for
# testing the matrix
# for row in railMatrix:
# for column in row:
# print(column, end="")
# print("\n")
# # inner for
# # for
# putting letters of message one by one in the matrix in zig-zag
row = 0
check = 0
for i in range(len(msg)):
if check == 0:
railMatrix[row][i] = msg[i]
row += 1
if row == rails:
check = 1
row -= 1
# inner if
elif check == 1:
row -= 1
railMatrix[row][i] = msg[i]
if row == 0:
check = 0
row = 1
# inner if
# if-else
# testing the matrix with message in zig-zag
# for row in railMatrix:
# for column in row:
# print(column, end="")
# print("\n")
# # inner for
# # for
encryp_text = ""
for i in range(rails):
for j in range(len(msg)):
encryp_text += railMatrix[i][j]
# for
# removing '.' from encrypted text
encryp_text = re.sub(r"\.", "", encryp_text)
print("Encrypted Text: {}".format(encryp_text))
def cipher_decryption():
msg = input("Enter message: ")
rails = int(input("Enter number of rails: "))
# removing white space from message
msg = msg.replace(" ", "")
# creating an empty matrix
railMatrix = []
for i in range(rails):
railMatrix.append([])
for row in range(rails):
for column in range(len(msg)):
railMatrix[row].append('.')
# inner for
# for
# testing the matrix
# for row in railMatrix:
# for column in row:
# print(column, end="")
# print("\n")
# # inner for
# # for
# putting letters of message one by one in the matrix in zig-zag
row = 0
check = 0
for i in range(len(msg)):
if check == 0:
railMatrix[row][i] = msg[i]
row += 1
if row == rails:
check = 1
row -= 1
# inner if
elif check == 1:
row -= 1
railMatrix[row][i] = msg[i]
if row == 0:
check = 0
row = 1
# inner if
# if-else
# testing the matrix with message in zig-zag
# for row in railMatrix:
# for column in row:
# print(column, end="")
# print("\n")
# # inner for
# # for
# reordering the matrix
ordr = 0
for i in range(rails):
for j in range(len(msg)):
temp = railMatrix[i][j]
if re.search("\\.", temp):
# skipping '.'
continue
else:
railMatrix[i][j] = msg[ordr]
ordr += 1
# if-else
# inner for
# for
# testing matrix reorder
for i in railMatrix:
for column in i:
print(column, end="")
#inner for
print("\n")
# for
# putting reordered matrix into decrypted text string to get decrypted text
check = 0
row = 0
decryp_text = ""
for i in range(len(msg)):
if check == 0:
decryp_text += railMatrix[row][i]
row += 1
if row == rails:
check = 1
row -= 1
# inner if
elif check == 1:
row -= 1
decryp_text += railMatrix[row][i]
if row == 0:
check = 0
row = 1
# inner if
# if-else
# for
decryp_text = re.sub(r"\.", "", decryp_text)
print("Decrypted Text: {}".format(decryp_text))
def main():
choice = int(input("1. Encryption\n2. Decryption\nChoose(1,2): "))
if choice == 1:
print("---Encryption---")
cipher_encryption()
elif choice == 2:
print("---Decryption---")
cipher_decryption()
else:
print("Invalid Choice")
if __name__ == "__main__":
main()