好的,所以我需要加密或解密给定整数列表,消息和密钥流值的消息。每当我运行我的函数时,我都会收到此错误:
File "C:\Users\v\Desktop\Assignment 1\cipher_functions.py", line 152, in <module>
result += decrypt_letter(i, get_next_keystream_value)
File "C:\Users\v\Desktop\Assignment 1\cipher_functions.py", line 51, in <module>
key_stream = (ord_char - key_value) builtins.TypeError: unsupported operand type(s) for -: 'int' and 'function'
这些是我认为涉及的两个功能:
def encrypt_letter(my_char, key_value):
'''(str, int) -> str
'''
my_list = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
'M', 'N', 'O', 'P', 'Q', 'R', 'S',
'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
ord_char = (ord(my_char.upper()) - 65)
key_stream = (ord_char + key_value)
if key_stream > 25:
result = (key_stream - 26)
elif key_stream <= 25:
result = key_stream
key_streamed_value = my_list[result]
return key_streamed_value
def decrypt_letter(my_upper_char, key_value):
'''(str, int) -> str
'''
my_list = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
'M', 'N', 'O', 'P', 'Q', 'R', 'S',
'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
ord_char = (ord(my_upper_char) - 65)
key_stream = (ord_char - key_value)
if key_stream < 0:
result = (key_stream + 26)
elif key_stream >= 0:
result = key_stream
key_streamed_value = my_list[result]
return key_streamed_value
def process_message(deck_cards, my_message, convert):
'''(list of int, str, str) -> str
'''
result = ""
new_message = clean_message(my_message)
for i in new_message:
if convert == 'e':
result += encrypt_letter(i, get_next_keystream_value)
elif convert == "d":
result += decrypt_letter(i, get_next_keystream_value)
return result
有谁知道为什么会出现这个问题?
答案 0 :(得分:0)
看起来问题是get_next_keystream_value
没有在任何地方定义。
目前还不清楚它是否是一个你没有初始化的变量,或者它是否应该是一个尚未编码的函数的函数调用,在这种情况下它应该是get_next_keystream_value()
。鉴于代码的结构,看起来您试图将其作为key_value
传递,在这种情况下,您需要先将其初始化为整数。