การเข้ารหัสไฟล์
ใน Python สามารถเข้ารหัสและถอดรหัสไฟล์ก่อนที่จะส่งไปยังช่องทางการสื่อสาร สำหรับสิ่งนี้คุณจะต้องใช้ปลั๊กอินPyCrypto. คุณสามารถติดตั้งปลั๊กอินนี้โดยใช้คำสั่งที่ระบุด้านล่าง
pip install pycrypto
รหัส
รหัสโปรแกรมสำหรับเข้ารหัสไฟล์ด้วยตัวป้องกันรหัสผ่านระบุไว้ด้านล่าง -
# =================Other Configuration================
# Usages :
usage = "usage: %prog [options] "
# Version
Version="%prog 0.0.1"
# ====================================================
# Import Modules
import optparse, sys,os
from toolkit import processor as ps
def main():
parser = optparse.OptionParser(usage = usage,version = Version)
parser.add_option(
'-i','--input',type = 'string',dest = 'inputfile',
help = "File Input Path For Encryption", default = None)
parser.add_option(
'-o','--output',type = "string",dest = 'outputfile',
help = "File Output Path For Saving Encrypter Cipher",default = ".")
parser.add_option(
'-p','--password',type = "string",dest = 'password',
help = "Provide Password For Encrypting File",default = None)
parser.add_option(
'-p','--password',type = "string",dest = 'password',
help = "Provide Password For Encrypting File",default = None)
(options, args)= parser.parse_args()
# Input Conditions Checkings
if not options.inputfile or not os.path.isfile(options.inputfile):
print " [Error] Please Specify Input File Path"
exit(0)
if not options.outputfile or not os.path.isdir(options.outputfile):
print " [Error] Please Specify Output Path"
exit(0)
if not options.password:
print " [Error] No Password Input"
exit(0)
inputfile = options.inputfile
outputfile = os.path.join(
options.outputfile,os.path.basename(options.inputfile).split('.')[0]+'.ssb')
password = options.password
base = os.path.basename(inputfile).split('.')[1]
work = "E"
ps.FileCipher(inputfile,outputfile,password,work)
return
if __name__ == '__main__':
main()
คุณสามารถใช้คำสั่งต่อไปนี้เพื่อดำเนินการกระบวนการเข้ารหัสพร้อมกับรหัสผ่าน -
python pyfilecipher-encrypt.py -i file_path_for_encryption -o output_path -p password
เอาต์พุต
คุณสามารถสังเกตผลลัพธ์ต่อไปนี้เมื่อคุณรันโค้ดที่ระบุด้านบน -
คำอธิบาย
รหัสผ่านถูกสร้างขึ้นโดยใช้อัลกอริทึมแฮช MD5 และค่าจะถูกเก็บไว้ในไฟล์สำรองที่ปลอดภัยในระบบ Windows ซึ่งรวมถึงค่าที่แสดงด้านล่าง -