add keyinfo tool

This commit is contained in:
Jeff Becker 2016-10-05 10:06:06 -04:00
parent 526ba37435
commit 71d4221af2
No known key found for this signature in database
GPG key ID: AB950234D6EA286B
7 changed files with 112 additions and 2 deletions

View file

@ -0,0 +1,8 @@
CXXFLAGS = -I ../../../
all: keyinfo
keyinfo:
$(CXX) -o keyinfo keyinfo.cpp $(CXXFLAGS) -std=c++11 ../../../libi2pd.a -lssl -lcrypto -lboost_system
clean:
$(RM) keyinfo