{"id":4363,"date":"2021-08-03T10:08:29","date_gmt":"2021-08-03T10:08:29","guid":{"rendered":"https:\/\/www.bearloga.space\/?page_id=4363"},"modified":"2021-08-03T10:08:30","modified_gmt":"2021-08-03T10:08:30","slug":"shifrovanie-fajlov","status":"publish","type":"page","link":"https:\/\/www.bearloga.space\/en\/shifrovanie-fajlov\/","title":{"rendered":"\u0428\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u043e\u0432"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">\u0412 Python \u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u0442\u044c \u0438 \u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0430\u0439\u043b\u044b \u043f\u0435\u0440\u0435\u0434 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435\u0439 \u0432 \u043a\u0430\u043d\u0430\u043b \u0441\u0432\u044f\u0437\u0438.&nbsp;\u0414\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u0432\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d&nbsp;<strong>PyCrypto<\/strong>&nbsp;.&nbsp;\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u043f\u043b\u0430\u0433\u0438\u043d \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043e\u043c\u0430\u043d\u0434\u044b, \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043d\u043e\u0439 \u043d\u0438\u0436\u0435.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">pip install pycrypto\n<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/coderlessons.com\/wp-content\/uploads\/2019\/07\/pycrypto.jpg\" alt=\"PyCrypto\"\/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">\u041a\u043e\u0434<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u041a\u043e\u0434 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0434\u043b\u044f \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u0430 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043f\u0430\u0440\u043e\u043b\u0435\u043c \u0443\u043a\u0430\u0437\u0430\u043d \u043d\u0438\u0436\u0435 \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># =================Other Configuration================\n# Usages :\nusage = \"usage: %prog [options] \"\n# Version\nVersion=\"%prog 0.0.1\"\n# ====================================================\n# Import Modules\nimport optparse, sys,os\nfrom toolkit import processor as ps\ndef main():\n   parser = optparse.OptionParser(usage = usage,version = Version)\n   parser.add_option(\n      '-i','--input',type = 'string',dest = 'inputfile',\n      help = \"File Input Path For Encryption\", default = None)\n   \n   parser.add_option(\n      '-o','--output',type = \"string\",dest = 'outputfile',\n      help = \"File Output Path For Saving Encrypter Cipher\",default = \".\")\n\t\n   parser.add_option(\n      '-p','--password',type = \"string\",dest = 'password',\n      help = \"Provide Password For Encrypting File\",default = None)\n\t\n   parser.add_option(\n      '-p','--password',type = \"string\",dest = 'password',\n      help = \"Provide Password For Encrypting File\",default = None)\n\t\n   (options, args)= parser.parse_args()\n\t\n   # Input Conditions Checkings\n   if not options.inputfile or not os.path.isfile(options.inputfile):\n      print \" [Error] Please Specify Input File Path\"\n      exit(0)\n   if not options.outputfile or not os.path.isdir(options.outputfile):\n      print \" [Error] Please Specify Output Path\"\n      exit(0)\n   if not options.password:\n      print \" [Error] No Password Input\"\n      exit(0)\n   inputfile = options.inputfile\n\n   outputfile = os.path.join(\n      options.outputfile,os.path.basename(options.inputfile).split('.')[0]+'.ssb')\n   password = options.password\n   base = os.path.basename(inputfile).split('.')[1]\n   work = \"E\"\n\n   ps.FileCipher(inputfile,outputfile,password,work)\n   return\n\n   if __name__ == '__main__':\n   main()<\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e \u043a\u043e\u043c\u0430\u043d\u0434\u0443 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u043c\u0435\u0441\u0442\u0435 \u0441 \u043f\u0430\u0440\u043e\u043b\u0435\u043c \u2014<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">python pyfilecipher-encrypt.py -i file_path_for_encryption -o output_path -p password\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">\u0412\u044b\u0445\u043e\u0434<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u0431\u043b\u044e\u0434\u0430\u0442\u044c \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0432\u044b\u0432\u043e\u0434 \u043f\u0440\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0438 \u043a\u043e\u0434\u0430, \u043f\u0440\u0438\u0432\u0435\u0434\u0435\u043d\u043d\u043e\u0433\u043e \u0432\u044b\u0448\u0435 \u2014<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/coderlessons.com\/wp-content\/uploads\/2019\/07\/encryption_process.jpg\" alt=\"\u041f\u0440\u043e\u0446\u0435\u0441\u0441 \u0448\u0438\u0444\u0440\u043e\u0432\u0430\u043d\u0438\u044f\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">\u043e\u0431\u044a\u044f\u0441\u043d\u0435\u043d\u0438\u0435<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">\u041f\u0430\u0440\u043e\u043b\u0438 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0430\u043b\u0433\u043e\u0440\u0438\u0442\u043c\u0430 \u0445\u0435\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f MD5, \u0430 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u0445\u0440\u0430\u043d\u044f\u0442\u0441\u044f \u0432 \u043f\u0440\u043e\u0441\u0442\u043e \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u044b\u0445 \u0444\u0430\u0439\u043b\u0430\u0445 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u044b\u0445 \u043a\u043e\u043f\u0438\u0439 \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0435 Windows, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0432\u043a\u043b\u044e\u0447\u0430\u044e\u0442 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u0412 Python \u043c\u043e\u0436\u043d\u043e \u0437\u0430\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u0442\u044c \u0438 \u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0430\u0439\u043b\u044b \u043f\u0435\u0440\u0435\u0434 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0435\u0439 \u0432 \u043a\u0430\u043d\u0430\u043b \u0441\u0432\u044f\u0437\u0438.&nbsp;\u0414\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u0432\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d&nbsp;PyCrypto&nbsp;.&nbsp;\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[140],"tags":[],"class_list":["post-4363","page","type-page","status-publish","hentry","category-kriptografiya-2"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/pages\/4363","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/comments?post=4363"}],"version-history":[{"count":0,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/pages\/4363\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/media?parent=4363"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/categories?post=4363"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bearloga.space\/en\/wp-json\/wp\/v2\/tags?post=4363"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}