Rename server to auth-server

This commit is contained in:
Ian Gulliver
2015-02-05 11:38:34 +00:00
parent 8117cacb04
commit 61d622b9b1

14
auth-server.cc Normal file
View File

@@ -0,0 +1,14 @@
#include <iostream>
#include "nacl/build/instance1/include/amd64/crypto_box.h"
int main() {
std::string pk;
std::string sk;
pk = crypto_box_keypair(&sk);
std::cout << pk.size() << std::endl;
return 0;
}