日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

python 文件加密_python实现文件快照加密保护的方法

發布時間:2024/7/23 python 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python 文件加密_python实现文件快照加密保护的方法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

本文實例講述了python實現文件快照加密保護的方法。分享給大家供大家參考。具體如下:

這段代碼可以對指定的目錄進行掃描,包含子目錄,對指定擴展名的文件進行SHA-1加密后存儲在cvs文件,以防止文件被篡改

調用方法:python snapper.py > todayCheck.csv

# Hello, this is a script written in Python. See http://www.pyhon.org

#

# Snapper 1.2p

#

# This script will walk a directory (and its subdirectories) and compute

# SHA (Secure Hash Algorithm) for specific files (according to their

# extensions) and ouput a CSV file (suited for loading into a spreadsheet

# editor,a database or simply comparing with diff or ExamDiff.).

#

# You can redirect the output of this script to a file.

# eg. python snapper.py > todayCheck.csv

#

# This script can be usefull to check system files tampering.

#

# This script is public domain. Feel free to reuse it.

# The author is:

# Sebastien SAUVAGE

#

# http://sebsauvage.net

#

# More quick & dirty scripts are available at http://sebsauvage.net/python/

#

# Directory to scan and extensions are hardcoded below:

directoryStart = r'c:\windows'

extensionList=['.exe','.dll','.ini','.ocx','.cpl','.vxd','.drv','.vbx','.com','.bat','.src',

'.sys','.386','.acm','.ax', '.bpl','.bin','.cab','.olb','.mpd','.pdr','.jar']

import os,string,sha,stat,sys

def snapper ( directoryStart , extensionList ) :

os.path.walk( directoryStart, snapper_callback, extensionList )

def snapper_callback ( extensionList , directory, files ) :

sys.stderr.write('Scanning '+directory+'\n')

for fileName in files:

if os.path.isfile( os.path.join(directory,fileName) ) :

if string.lower(os.path.splitext(fileName)[1]) in extensionList :

filelist.append(fileSHA ( os.path.join(directory,fileName) ))

def fileSHA ( filepath ) :

sys.stderr.write(' Reading '+os.path.split(filepath)[1]+'\n')

file = open(filepath,'rb')

digest = sha.new()

data = file.read(65536)

while len(data) != 0:

digest.update(data)

data = file.read(65536)

file.close()

return '"'+filepath+'",'+str(os.stat(filepath)[6])+',"'+digest.hexdigest()+'"'

sys.stderr.write('Snapper 1.1p - http://sebsauvage.net/python/\n')

filelist = []

snapper( directoryStart , extensionList )

sys.stderr.write('Sorting...\n')

filelist.sort()

filelist.insert(0, '"File path","File size","SHA"' )

sys.stderr.write('Printing...\n')

for line in filelist:

print line

sys.stderr.write('All done.\n')

希望本文所述對大家的Python程序設計有所幫助。

總結

以上是生活随笔為你收集整理的python 文件加密_python实现文件快照加密保护的方法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。