Documentation and improved bit-order treatment

This commit is contained in:
2025-09-04 14:55:46 -07:00
committed by Eric Mertens
parent 676629dfe5
commit 51dbdbf415
8 changed files with 105 additions and 32 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
.PHONY: test test-hash256 test-xof128 test-cxof128 test-aead128
CRYPTOL ?= cryptol
test: test-hash256 test-xof128 test-cxof128 test-aead128
test-hash256:
$(CRYPTOL) -c :exhaust TestAsconHash256.cry
test-xof128:
$(CRYPTOL) -c :exhaust TestAsconXOF128.cry
test-cxof128:
$(CRYPTOL) -c :exhaust TestAsconCXOF128.cry
test-aead128:
$(CRYPTOL) -c :exhaust TestAsconAEAD128.cry