Omnibus commited on
Commit
741f5d2
·
1 Parent(s): d4a6953

Update crypt.py

Browse files
Files changed (1) hide show
  1. crypt.py +2 -1
crypt.py CHANGED
@@ -332,7 +332,8 @@ def encrypt_trans(data,pub_key):
332
 
333
 
334
  def decrypt_trans(data,key):
335
- enc_in = eval(data)
 
336
  private_key = eval(key)
337
  #enc_in = decode(im)
338
  #secret_code="SECRET PASSWORD"
 
332
 
333
 
334
  def decrypt_trans(data,key):
335
+ print(f' DATA ::: {data}')
336
+ enc_in = data
337
  private_key = eval(key)
338
  #enc_in = decode(im)
339
  #secret_code="SECRET PASSWORD"