
* Vegetarian Filet o Fish model * fix.. atc.. * test cluster_speed_limit * fix.. cluster_speed_limit.. 2 * fix.. clusterspeedlimit3 * cruise speed to roadlimit speed * fix.. * fix.. eng * deltaUp/Down for lanechange * fix.. atc desire... * fix.. * ff * ff * fix.. * fix.. eng * fix engsound * Update desire_helper.py * fix.. connect... * fix curve_min speed * Revert "fix curve_min speed" This reverts commit fcc9c2eb14eb3504abef3e420db93e8882e56f37. * Reapply "fix curve_min speed" This reverts commit 2d2bba476c58a7b4e13bac3c3ad0e4694c95515d. * fix.. auto speed up.. roadlimit * fix.. atc auto lanechange... * Update desire_helper.py * Update cruise.py * debug atc... * fix.. waze alert offset.. * fix.. * test atc.. * fix.. * fix.. atc * atc test.. * fix.. atc * fix.. atc2 * fix.. atc3 * KerryGold Model. latsmooth_sec = 0.0 * lat smooth seconds 0.13 * fix comment * fix.. auto cruise, and speed unit * change lanemode switching. * erase mazda lkas button.
32 lines
1.5 KiB
Python
32 lines
1.5 KiB
Python
import unittest, zipfile, re
|
|
from tinygrad import Tensor
|
|
from tinygrad.helpers import fetch, tqdm
|
|
|
|
SHA3_URL = "https://csrc.nist.gov/CSRC/media/Projects/Cryptographic-Algorithm-Validation-Program/documents/sha3/sha-3bytetestvectors.zip"
|
|
SHAKE_URL = "https://csrc.nist.gov/CSRC/media/Projects/Cryptographic-Algorithm-Validation-Program/documents/sha3/shakebytetestvectors.zip"
|
|
|
|
class TestExternalKeccak(unittest.TestCase):
|
|
def test_sha3_224(self): self.check_nist_vectors(SHA3_URL, ["SHA3_224LongMsg.rsp", "SHA3_224ShortMsg.rsp"], "sha3_224")
|
|
def test_sha3_256(self): self.check_nist_vectors(SHA3_URL, ["SHA3_256LongMsg.rsp", "SHA3_256ShortMsg.rsp"], "sha3_256")
|
|
def test_shake_128(self): self.check_nist_vectors(SHAKE_URL, ["SHAKE128LongMsg.rsp", "SHAKE128ShortMsg.rsp"], "shake_128")
|
|
|
|
def check_nist_vectors(self, url: str, filenames: list[str], preset: str):
|
|
pattern = r"Len\s*=\s*(?P<Len>\d+)\s+Msg\s*=\s*(?P<Msg>[0-9a-fA-F\s]+)\s+(MD|Output)\s*=\s*(?P<Output>[0-9a-fA-F]+)"
|
|
vecs_zip = fetch(url)
|
|
|
|
for filename in filenames:
|
|
vecs = zipfile.ZipFile(vecs_zip).open(filename).read().decode()
|
|
|
|
vectors = [ (l, bytes.fromhex(match["Msg"].lower()), bytes.fromhex(match["Output"].lower()))
|
|
for match in re.finditer(pattern, vecs) if (l:=int(match["Len"])) < 8192 ]
|
|
|
|
self.assertTrue(len(vectors) > 0)
|
|
|
|
print("file", filename)
|
|
for data_len, data, output in tqdm(vectors):
|
|
tinyout = bytes(Tensor(data[:data_len//8]).keccak(preset).data())
|
|
self.assertEqual(tinyout, output)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|