-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
36 lines (28 loc) · 963 Bytes
/
main.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
from NtruEncrypt import *
from Polynomial import Zx
from num_to_polynomial import *
d = 5
p = 3
q = 128
message = input("Enter Message: ")
print('Curve Parameters')
elliptic_a = int(input("Enter A: "))
elliptic_b = int(input("Enter B: "))
character_polynomials,N = koblitz_encoder(message,elliptic_a,elliptic_b)
public_key,private_key = generate_keypair(p,q,d,N)
print('\nPublic Key = ',end='')
print(public_key.print_polynomial())
print('\nEncrypted = ')
cipher_polys = []
for element in character_polynomials:
cipher_text = encrypt(element,public_key,d,N,q)
cipher_polys.append(cipher_text)
print(cipher_text.print_polynomial())
print('\nDecrypted = ',end='')
dec_w = []
for element in cipher_polys:
decrypted_message = decrypt(element,private_key,p,q,N)
#print(decrypted_message.print_polynomial())
dec_w.append(decrypted_message.coeffs)
decrypted_plain_text = koblitz_decoder(points_decoder(dec_w))
print(decrypted_plain_text)