फाइलों का डिक्रिप्शन
इस अध्याय में, हम पायथन का उपयोग करके क्रिप्टोग्राफी में फ़ाइलों के डिक्रिप्शन पर चर्चा करते हैं। ध्यान दें कि डिक्रिप्शन प्रक्रिया के लिए, हम उसी प्रक्रिया का पालन करेंगे, लेकिन आउटपुट पथ को निर्दिष्ट करने के बजाय, हम इनपुट पथ या आवश्यक फ़ाइल पर ध्यान केंद्रित करेंगे जो एन्क्रिप्टेड है।
कोड
निम्नलिखित पायथन का उपयोग करके क्रिप्टोग्राफी में फ़ाइलों को डिक्रिप्ट करने के लिए एक नमूना कोड है -
#!/usr/bin/python
# ---------------- READ ME ---------------------------------------------
# This Script is Created Only For Practise And Educational Purpose Only
# This Script Is Created For http://bitforestinfo.blogspot.in
# This Script is Written By
#
#
##################################################
######## Please Don't Remove Author Name #########
############### Thanks ###########################
##################################################
#
#
# =================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)
(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
exit(0)
inputfile = options.inputfile
outputfile = options.outputfile
password = options.password
work = "D"
ps.FileCipher(inputfile,outputfile,password,work)
return
if __name__ == '__main__':
main()
उपरोक्त कोड निष्पादित करने के लिए आप निम्न कमांड का उपयोग कर सकते हैं -
python pyfilecipher-decrypt.py -i encrypted_file_path -p password
उत्पादन
जब आप ऊपर दिखाए गए कमांड को निष्पादित करते हैं तो आप निम्नलिखित कोड देख सकते हैं -
Note - आउटपुट एन्क्रिप्शन से पहले और डिक्रिप्शन के बाद हैश वैल्यू को निर्दिष्ट करता है, जो नोट करता है कि एक ही फाइल एन्क्रिप्टेड है और प्रक्रिया सफल रही।