test file. Consider writing 'words' to file instead of saving

a list in memory.

Signed-off-by: HeshamTB <hishaminv@gmail.com>
This commit is contained in:
HeshamTB 2020-04-17 04:43:03 +03:00
parent f9ff56651d
commit d23b2d4ae0
Signed by: Hesham
GPG Key ID: 74876157D199B09E

30
encodetest.py Normal file
View File

@ -0,0 +1,30 @@
s = 'test message hello awdawdaefe'
print(s)
s_number = int.from_bytes(s.encode('utf-8'),'little')
print(s_number)
ss = str(s_number.to_bytes(s_number.bit_length(),'little').decode('utf-8')).strip()
print(ss)
msg_list = list()
for word in s.split():
msg_list.append(word)
print(msg_list)
import rsa as en
key = en.readKeyFile('key')
enc_list = list()
pub_key = (key[0],key[1])
for word in msg_list:
enc_list.append(en.encrypt(word,pub_key))
print(enc_list)
unenc_list = list()
for enc_word in enc_list:
unenc_list.append(en.decrypt(enc_word,key[2],key[0]).strip(('\x00')))
print(unenc_list)