forked from sharunrajeev/YourFirstContribution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcli_ham.py
47 lines (42 loc) · 1023 Bytes
/
cli_ham.py
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
import socket
def calcRedundantBits(m):
for i in range(m):
if(2**i >= m + i + 1):
return i
def posRedundantBits(data, r):
j = 0
k = 1
m = len(data)
res = ''
for i in range(1, m + r+1):
if(i == 2**j):
res = res + '0'
j += 1
else:
res = res + data[-1 * k]
k += 1
return res[::-1]
def calcParityBits(arr, r):
n = len(arr)
for i in range(r):
val = 0
for j in range(1, n + 1):
if(j & (2**i) == (2**i)):
val = val ^ int(arr[-1 * j])
arr = arr[:n-(2**i)] + str(val) + arr[n-(2**i)+1:]
return arr
s=socket.socket()
port=12345
s.connect(('127.0.0.1',port))
string=input("Enter the data you want to send: ")
data =(''.join(format(ord(x), 'b') for x in string))
print(data);
n = len(data)
r = calcRedundantBits(n)
arr = posRedundantBits(data, r)
arr = calcParityBits(arr, r)
print("Data transferred: " + arr)
s.send(arr.encode())
print ("Without disturbance\nMessage from server:",s.recv(1024).decode())
print ("With disturbance\nMessage from server:",s.recv(1024).decode())
s.close()