imcrypt app
1.0.0
هنا لدينا تطبيق ويب مذهل للتشفير والتشفير النصفي ، تم تصميمه باستخدام STIPLELIT.
pip install streamlit
pip install imcrypt
ما عليك سوى استنساخ هذا المستودع ، وقرص مضغوط في imcrypt-app وقم بتشغيل الأمر أدناه:
streamlit run app . py 
وانتقل إلى هذا العنوان http: // localhost: 8501 في متصفحك.


الكود في حد ذاته قصير جدًا ، يمكنك أن ترى نفسك.
import streamlit as st
import imcrypt
st . title ( 'Imcrypt' )
st . text ( 'A secure text encryption tool.' )
text = st . text_input ( 'Text:' )
e_type = st . selectbox ( 'Choose One:' , ( 'Encryption' , 'Decryption' ))
password = st . text_input ( 'password:' )
submit = st . button ( 'Submit' )
if submit :
#text or password should not be empty
if not ( password == '' or text == '' ):
#if Encryption is choosen
if e_type == 'Encryption' :
enc_text = imcrypt . encrypt ( text , key = password )
st . text_input ( 'Your Encrypted Text:' , f' { enc_text } ' )
#if Decryption is choosen
elif e_type == 'Decryption' :
try :
enc_text = imcrypt . decrypt ( text , key = password )
st . text_input ( 'Your Decrypted Text:' , f' { enc_text } ' )
except Exception :
pass