Python router + Go sm-leaf reject missing to, empty ct, plaintext body. Summary logs never include ciphertext. MODULE.md.
9 lines
304 B
Makefile
9 lines
304 B
Makefile
.PHONY: html pdf test
|
|
html:
|
|
sphinx-build -b html source build/html
|
|
pdf:
|
|
sphinx-build -b latex source build/latex
|
|
$(MAKE) -C build/latex || pdflatex -output-directory build/latex build/latex/secure-messaging.tex
|
|
test:
|
|
PYTHONPATH=python python3 -m unittest discover -s tests -v
|
|
cd go && go test ./...
|