mirror of
https://github.com/TeamPGM/tgcrypto.git
synced 2024-11-22 15:38:12 +00:00
115 lines
3.9 KiB
Python
115 lines
3.9 KiB
Python
|
import os
|
||
|
import re
|
||
|
import unittest
|
||
|
from pathlib import Path
|
||
|
|
||
|
import tgcrypto
|
||
|
|
||
|
|
||
|
class TestCBC256NIST(unittest.TestCase):
|
||
|
# https://csrc.nist.gov/CSRC/media/Projects/Cryptographic-Standards-and-Guidelines/documents/examples/AES_CBC.pdf
|
||
|
|
||
|
def test_cbc256_encrypt(self):
|
||
|
key = bytes.fromhex("""
|
||
|
603DEB10 15CA71BE 2B73AEF0 857D7781
|
||
|
1F352C07 3B6108D7 2D9810A3 0914DFF4
|
||
|
""".replace(" ", "").replace("\n", ""))
|
||
|
|
||
|
iv = bytes.fromhex("""
|
||
|
00010203 04050607 08090A0B 0C0D0E0F
|
||
|
""".replace(" ", "").replace("\n", ""))
|
||
|
|
||
|
plaintext = bytes.fromhex("""
|
||
|
6BC1BEE2 2E409F96 E93D7E11 7393172A
|
||
|
AE2D8A57 1E03AC9C 9EB76FAC 45AF8E51
|
||
|
30C81C46 A35CE411 E5FBC119 1A0A52EF
|
||
|
F69F2445 DF4F9B17 AD2B417B E66C3710
|
||
|
""".replace(" ", "").replace("\n", ""))
|
||
|
|
||
|
ciphertext = bytes.fromhex("""
|
||
|
F58C4C04 D6E5F1BA 779EABFB 5F7BFBD6
|
||
|
9CFC4E96 7EDB808D 679F777B C6702C7D
|
||
|
39F23369 A9D9BACF A530E263 04231461
|
||
|
B2EB05E2 C39BE9FC DA6C1907 8C6A9D1B
|
||
|
""".replace(" ", "").replace("\n", ""))
|
||
|
|
||
|
self.assertEqual(tgcrypto.cbc256_encrypt(plaintext, key, iv), ciphertext)
|
||
|
|
||
|
def test_cbc256_decrypt(self):
|
||
|
key = bytes.fromhex("""
|
||
|
603DEB10 15CA71BE 2B73AEF0 857D7781
|
||
|
1F352C07 3B6108D7 2D9810A3 0914DFF4
|
||
|
""".replace(" ", "").replace("\n", ""))
|
||
|
|
||
|
iv = bytes.fromhex("""
|
||
|
00010203 04050607 08090A0B 0C0D0E0F
|
||
|
""".replace(" ", "").replace("\n", ""))
|
||
|
|
||
|
ciphertext = bytes.fromhex("""
|
||
|
F58C4C04 D6E5F1BA 779EABFB 5F7BFBD6
|
||
|
9CFC4E96 7EDB808D 679F777B C6702C7D
|
||
|
39F23369 A9D9BACF A530E263 04231461
|
||
|
B2EB05E2 C39BE9FC DA6C1907 8C6A9D1B
|
||
|
""".replace(" ", "").replace("\n", ""))
|
||
|
|
||
|
plaintext = bytes.fromhex("""
|
||
|
6BC1BEE2 2E409F96 E93D7E11 7393172A
|
||
|
AE2D8A57 1E03AC9C 9EB76FAC 45AF8E51
|
||
|
30C81C46 A35CE411 E5FBC119 1A0A52EF
|
||
|
F69F2445 DF4F9B17 AD2B417B E66C3710
|
||
|
""".replace(" ", "").replace("\n", ""))
|
||
|
|
||
|
self.assertEqual(tgcrypto.cbc256_decrypt(ciphertext, key, iv), plaintext)
|
||
|
|
||
|
|
||
|
class TestCBC256Cryptography(unittest.TestCase):
|
||
|
# https://github.com/pyca/cryptography/blob/cd4de3ce6dc2a0dd4171b869e187857e4125853b/vectors/cryptography_vectors/ciphers/AES/CBC
|
||
|
|
||
|
TEMPLATE = """
|
||
|
def test_cbc256_{mode}_{name}_{count}(self):
|
||
|
key = bytes.fromhex("{key}")
|
||
|
iv = bytes.fromhex("{iv}")
|
||
|
plaintext = bytes.fromhex("{plaintext}")
|
||
|
ciphertext = bytes.fromhex("{ciphertext}")
|
||
|
|
||
|
self.assertEqual(tgcrypto.cbc256_{mode}({input}, key, iv), {output})
|
||
|
""".replace("\n ", "\n")
|
||
|
|
||
|
PATTERN = r"COUNT = (\d+)\nKEY = (\w+)\nIV = (\w+)\n(PLAINTEXT|CIPHERTEXT) = (\w+)\n(PLAINTEXT|CIPHERTEXT) = (\w+)"
|
||
|
|
||
|
for path in (Path(__file__).parent / "vectors").rglob("*.rsp"):
|
||
|
with open(path, "r", encoding="utf-8") as f:
|
||
|
for match in re.finditer(PATTERN, f.read()):
|
||
|
count, key, iv, plain_or_cipher, bytes1, _, bytes2 = match.groups()
|
||
|
|
||
|
if plain_or_cipher == "PLAINTEXT":
|
||
|
mode = "encrypt"
|
||
|
plaintext = bytes1
|
||
|
ciphertext = bytes2
|
||
|
input = "plaintext"
|
||
|
output = "ciphertext"
|
||
|
else:
|
||
|
mode = "decrypt"
|
||
|
plaintext = bytes2
|
||
|
ciphertext = bytes1
|
||
|
input = "ciphertext"
|
||
|
output = "plaintext"
|
||
|
|
||
|
exec(
|
||
|
TEMPLATE.format(
|
||
|
mode=mode,
|
||
|
name=os.path.split(path)[-1].split(".")[0],
|
||
|
count=count,
|
||
|
key=key,
|
||
|
iv=iv,
|
||
|
plaintext=plaintext,
|
||
|
ciphertext=ciphertext,
|
||
|
input=input,
|
||
|
output=output
|
||
|
)
|
||
|
)
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
unittest.main()
|