我在Python中有这段代码
import unittest
class AES_TEST(unittest.TestCase):
def test_encryption(self):
print('Encryption : ')
plaintext = 0x3243f6a8885a308d313198a2e0370734
encrypted = 75960790320075369159181001580855561010
print(encrypted)
print('0x3925841d02dc09fbdc118597196a0b32')
self.assertEqual(encrypted, 0x3925841d02dc09fbdc118597196a0b32)
def test_decryption(self):
print('Decryption : ')
ciphertext = 0x3925841d02dc09fbdc118597196a0b32
decrypted = self.AES.decrypt(ciphertext)
decrypted = 66814286504060421741230023322616923956
print(decrypted)
print('0x3243f6a8885a308d313198a2e0370734')
self.assertEqual(decrypted, 0x3243f6a8885a308d313198a2e0370734)
if __name__ == '__main__':
unittest.main()
为什么它不会引发错误?为什么encrypted
变量等于0x3925841d02dc09fbdc118597196a0b32
,而实际上它们具有不同的值?在decryption
变量中也观察到相同的行为。
答案 0 :(得分:2)
他们是平等的。
数字前面的0x表示该表示形式是基数16(十六进制)。如果您使用calculator将str1 <- "ENSG00001234.2"
转换为十进制格式,则会看到它与在该代码块中为其分配的值相同。