* use protobuf for encryption-header * use fixed size file-header (42 bytes) before the encryption-header * add encryption/decryption contexts * teach MakePrivateKey() to fixup its internal public key bits
13 lines
125 B
Makefile
13 lines
125 B
Makefile
|
|
pwd = $(shell pwd)
|
|
|
|
.PHONY: all test clean realclean
|
|
|
|
all:
|
|
./build -s
|
|
|
|
test:
|
|
go test ./sign
|
|
|
|
clean realclean:
|
|
rm -rf bin
|