gpt4 book ai didi

python - 使用 wxpython GUI 加密文件

转载 作者:行者123 更新时间:2023-12-04 10:43:18 25 4
gpt4 key购买 nike

我想使用 cryptography 加密文件在 Python 中。

我正在使用 wx module,这是一个GUI库,我的应用是这样的:如果用户点击Encrypt a File按钮,应用程序打开文件资源管理器,他可以选择要加密的文件。当他单击一个文件并打开它时,我的函数将对其进行加密。

但它不起作用,它什么也不做,我没有收到任何错误,它似乎运行良好,但事实并非如此。

有什么建议 ?

import wx
import os
import random
import ctypes
from cryptography.fernet import Fernet

desktop = os.path.expanduser('~/Desktop')
fileKey = str(random.SystemRandom().randint(100, 1000)) + 'key.txt'

class myFrame(wx.Frame):
def __init__(self):
super().__init__(parent=None, title='Hello!', size=(600, 400), style=wx.DEFAULT_FRAME_STYLE ^ wx.RESIZE_BORDER)
panel = wx.Panel(self)
self.text_ctrl = wx.TextCtrl(panel, pos=(5, 5)) # Edit box
EncryptButton = wx.Button(panel, label='Encrypt a File', pos=(475, 295), size=(100, 55)).Bind(wx.EVT_BUTTON, self.onOpen) # Encrypt Button
self.Show() # Show Window

def onOpen(self, event):
fileFormat = 'All Files (*.*) | *.*'
dialog = wx.FileDialog(self, 'Choose File', wildcard=fileFormat, style=wx.FD_OPEN ^ wx.FD_FILE_MUST_EXIST)
path = dialog.GetPath()
if dialog.ShowModal() == wx.ID_OK:
try:
key = Fernet.generate_key()
tokenEnc = Fernet(key)
with open(path, 'rb+') as fobj:
plainText = fobj.read()
cipherText = tokenEnc.encrypt(plainText)
fobj.seek(0)
fobj.truncate()
fobj.write(cipherText)
ctypes.windll.user32.MessageBoxW(0, 'We have Encrypted the File, also, We have created a file with the key in your Desktop.', 'Performed Successfully', 1)
with open(os.path.join(desktop, fileKey), 'wb') as keyFile:
keyFile.write(key)
except Exception as e:
return False

if __name__ == '__main__':
app = wx.App()
frame = myFrame()
app.MainLoop()

最佳答案

问题是这段代码:

    path = dialog.GetPath()
if dialog.ShowModal() == wx.ID_OK:

当您甚至没有显示对话框时,您就在询问路径。这将导致一个空字符串。

您需要首先显示模态对话框,然后在用户验证文件时获取路径:
    if dialog.ShowModal() == wx.ID_OK:
path = dialog.GetPath()

请注意,此构造不是好的做法,并且会阻止您调试可能发生的任何错误:
   except Exception as e:
return False

至少如果发生了不好的事情,打印异常(或使用 wx 对话框将其显示给用户)
   except Exception as e:
print("something bad happened {}".format(e))
return False

关于python - 使用 wxpython GUI 加密文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59831213/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com