NTRU_IoT/infidel-code/call.py

20 lines
336 B
Python
Raw Permalink Normal View History

2022-02-01 11:45:47 -05:00
#!/bin/env python3
import py_wrappers.python_Connector as pC
print("Rapid Test : ")
print("1. EES 401")
print("2. EES 593")
case = input("-> : ")
rpt = input("-> Repetition : ")
if case == "1":
print("EES 401")
pC.enc_dec_test("401", int(rpt))
if case == "2":
print("EES 593")
pC.enc_dec_test("593", int(rpt))