Add gen-key for shared secret key generation
This commit is contained in:
5
Makefile
5
Makefile
@@ -1,4 +1,4 @@
|
||||
all: auth-server gen-keypair
|
||||
all: auth-server gen-key gen-keypair
|
||||
|
||||
%.o: %.cc
|
||||
g++ -c -o $@ $<
|
||||
@@ -6,5 +6,8 @@ all: auth-server gen-keypair
|
||||
auth-server: auth-server.o crypto.o
|
||||
g++ -o auth-server auth-server.o crypto.o nacl/build/instance1/lib/amd64/randombytes.o nacl/build/instance1/lib/amd64/libnacl.a
|
||||
|
||||
gen-key: gen-key.o crypto.o
|
||||
g++ -o gen-key gen-key.o crypto.o nacl/build/instance1/lib/amd64/randombytes.o nacl/build/instance1/lib/amd64/libnacl.a
|
||||
|
||||
gen-keypair: gen-keypair.o crypto.o
|
||||
g++ -o gen-keypair gen-keypair.o crypto.o nacl/build/instance1/lib/amd64/randombytes.o nacl/build/instance1/lib/amd64/libnacl.a
|
||||
|
||||
Reference in New Issue
Block a user