调整这段代码,使其运行成功,import PySide2.QtWidgets from PySide2.QtUiTools import QUiLoader from PySide2.QtWidgets import QMessageBox class Caesar: def __init__(self): # 从文件中加载UI界面 self.ui = QUiLoader().load('code.ui') self.ui.pushButton_3.clicked.connect(self.encrypt2) def encrypt2(self): # 获取用户输入的文本 plaintext = self.ui.textEdit_9.toPlainText() # 使用公钥进行加密 ciphertext = self.public_key.encrypt( plaintext, padding.OAEP( mgf=padding.MGF1(algorithm=hashes.SHA256()), algorithm=hashes.SHA256(), label=None ) ) self.ui.textEdit_10.setPlainText(f"加密结果:{ciphertext.hex()}") if __name__ == '__main__': # 管理图形用户界面应用程序的控制流 app = PySide2.QtWidgets.QApplication([]) caesar = Caesar() # 显示ui界面 caesar.ui.show() app.exec_()
时间: 2024-02-14 13:07:17 浏览: 146
好的,以下是可以运行的代码:
```python
import PySide2.QtWidgets
from PySide2.QtUiTools import QUiLoader
from PySide2.QtWidgets import QMessageBox
from cryptography.hazmat.primitives.asymmetric import rsa, padding
from cryptography.hazmat.primitives import hashes
class Caesar:
def __init__(self):
# 从文件中加载UI界面
self.ui = QUiLoader().load('code.ui')
# 生成RSA密钥对
self.private_key = rsa.generate_private_key(
public_exponent=65537,
key_size=2048
)
self.public_key = self.private_key.public_key()
self.ui.pushButton_3.clicked.connect(self.encrypt2)
def encrypt2(self):
# 获取用户输入的文本
plaintext = self.ui.textEdit_9.toPlainText().encode()
# 使用公钥进行加密
ciphertext = self.public_key.encrypt(
plaintext,
padding.OAEP(
mgf=padding.MGF1(algorithm=hashes.SHA256()),
algorithm=hashes.SHA256(),
label=None
)
)
self.ui.textEdit_10.setPlainText(f"加密结果:{ciphertext.hex()}")
if __name__ == '__main__':
# 管理图形用户界面应用程序的控制流
app = PySide2.QtWidgets.QApplication([])
caesar = Caesar()
# 显示ui界面
caesar.ui.show()
app.exec_()
```
这个代码中,我们做了以下修改:
1. 导入了所需的库:`cryptography.hazmat.primitives.asymmetric`、`cryptography.hazmat.primitives`,这些库用于实现加密算法,包括 RSA。
2. 在 `__init__` 函数中生成了一个 RSA 密钥对,并将公钥保存到了 `self.public_key` 变量中。这个变量可以在 `encrypt2` 函数中使用。
3. 在 `encrypt2` 函数中,我们将用户输入的明文先转换为字节串,然后使用公钥进行加密,并将密文的十六进制表示输出到文本框中。请注意,我们使用了 `padding.OAEP` 进行填充,这是 RSA 加密中推荐的填充方式之一。
阅读全文