mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-01-22 13:27:17 +01:00
* add readme
* add .gitignore * add keyinfo tool * fix up makefile to build i2pd git submodule
This commit is contained in:
parent
4d868b348c
commit
8533fc2f64
13
.gitignore
vendored
Normal file
13
.gitignore
vendored
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# emacs files
|
||||||
|
*~
|
||||||
|
*\#*
|
||||||
|
|
||||||
|
# object files
|
||||||
|
*.o
|
||||||
|
|
||||||
|
# built binaries
|
||||||
|
keygen
|
||||||
|
keyinfo
|
||||||
|
|
||||||
|
# private key files
|
||||||
|
*.dat
|
40
Makefile
40
Makefile
|
@ -1,26 +1,48 @@
|
||||||
|
I2PD_PATH = i2pd
|
||||||
CXX = g++
|
CXX = g++
|
||||||
CXXFLAGS = -g -Wall -std=c++11
|
FLAGS = -g -Wall -std=c++11
|
||||||
OBJECTS = keygen.o
|
INCFLAGS = -I$(I2PD_PATH)
|
||||||
INCFLAGS = -I"i2pd"
|
CXXFLAGS = $(FLAGS) $(INCFLAGS)
|
||||||
LDFLAGS = -Wl,-rpath,/usr/local/lib
|
LDFLAGS = -Wl,-rpath,/usr/local/lib
|
||||||
LIBS = i2pd/libi2pd.a -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lssl -lcrypto -lpthread -lrt -lz
|
LIBS = $(I2PD_PATH)/libi2pd.a -lboost_system -lboost_date_time -lboost_filesystem -lboost_program_options -lssl -lcrypto -lpthread -lrt -lz
|
||||||
|
|
||||||
all: keygen
|
SOURCES = $(wildcard *.cpp)
|
||||||
|
OBJECTS = $(SOURCES:.cpp=.o)
|
||||||
|
I2PD_LIB = libi2pd.a
|
||||||
|
|
||||||
|
|
||||||
|
all: keygen keyinfo
|
||||||
|
|
||||||
keygen: $(OBJECTS)
|
keygen: $(OBJECTS)
|
||||||
$(CXX) -o keygen $(OBJECTS) $(LDFLAGS) $(LIBS)
|
$(CXX) -o keygen keygen.o $(LDFLAGS) $(LIBS)
|
||||||
|
|
||||||
|
keyinfo: $(OBJECTS)
|
||||||
|
$(CXX) -o keyinfo keyinfo.o $(LDFLAGS) $(LIBS)
|
||||||
|
|
||||||
|
$(OBJECTS): libi2pd.a
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .cc .C .cpp .o
|
.SUFFIXES: .c .cc .C .cpp .o
|
||||||
|
|
||||||
.cpp.o :
|
$(I2PD_LIB):
|
||||||
|
$(MAKE) -C $(I2PD_PATH) mk_obj_dir $(I2PD_LIB)
|
||||||
|
|
||||||
|
%.o: %.cpp libi2pd.a
|
||||||
$(CXX) -o $@ -c $(CXXFLAGS) $< $(INCFLAGS)
|
$(CXX) -o $@ -c $(CXXFLAGS) $< $(INCFLAGS)
|
||||||
|
|
||||||
count:
|
count:
|
||||||
wc *.c *.cc *.C *.cpp *.h *.hpp
|
wc *.c *.cc *.C *.cpp *.h *.hpp
|
||||||
|
|
||||||
clean:
|
clean-i2pd:
|
||||||
rm -f *.o keygen
|
$(MAKE) -C $(I2PD_PATH) clean
|
||||||
|
|
||||||
|
clean-obj:
|
||||||
|
rm -f $(OBJECTS)
|
||||||
|
|
||||||
|
clean-bin:
|
||||||
|
rm -f keyinfo keygen
|
||||||
|
|
||||||
|
clean: clean-i2pd clean-obj clean-bin
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
.PHONY: count
|
.PHONY: count
|
||||||
|
|
18
README.md
Normal file
18
README.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# i2pd-tools
|
||||||
|
|
||||||
|
This repository contains tools that supplement i2pd.
|
||||||
|
|
||||||
|
Notice: git submodules are used so make sure to clone this repository recursively
|
||||||
|
|
||||||
|
git clone --recursive https://github.com/purplei2pd/i2pd-tools
|
||||||
|
|
||||||
|
## Tools included
|
||||||
|
|
||||||
|
### keygen
|
||||||
|
|
||||||
|
Generate an i2p private key
|
||||||
|
|
||||||
|
|
||||||
|
### keyinfo
|
||||||
|
|
||||||
|
Prints information about an i2p private key
|
70
keyinfo.cpp
Normal file
70
keyinfo.cpp
Normal file
|
@ -0,0 +1,70 @@
|
||||||
|
#include "Identity.h"
|
||||||
|
#include <iostream>
|
||||||
|
#include <fstream>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
int main(int argc, char * argv[])
|
||||||
|
{
|
||||||
|
if(argc == 1) {
|
||||||
|
std::cout << "usage: " << argv[0] << " [-v] [-d] privatekey.dat" << std::endl;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
int opt;
|
||||||
|
bool print_full = false;
|
||||||
|
bool verbose = false;
|
||||||
|
while((opt = getopt(argc, argv, "vd"))!=-1) {
|
||||||
|
switch(opt){
|
||||||
|
case 'v':
|
||||||
|
verbose = true;
|
||||||
|
break;
|
||||||
|
case 'd':
|
||||||
|
print_full = true;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
std::cout << "usage: " << argv[0] << " [-v] [-d] privatekey.dat" << std::endl;
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
std::string fname(argv[optind]);
|
||||||
|
i2p::data::PrivateKeys keys;
|
||||||
|
{
|
||||||
|
std::vector<uint8_t> buff;
|
||||||
|
std::ifstream inf;
|
||||||
|
inf.open(fname);
|
||||||
|
if (!inf.is_open()) {
|
||||||
|
std::cout << "cannot open private key file " << fname << std::endl;
|
||||||
|
return 2;
|
||||||
|
}
|
||||||
|
inf.seekg(0, std::ios::end);
|
||||||
|
const std::size_t len = inf.tellg();
|
||||||
|
inf.seekg(0, std::ios::beg);
|
||||||
|
buff.resize(len);
|
||||||
|
inf.read((char*)buff.data(), buff.size());
|
||||||
|
if (!keys.FromBuffer(buff.data(), buff.size())) {
|
||||||
|
std::cout << "bad key file format" << std::endl;
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
auto dest = keys.GetPublic();
|
||||||
|
if(!dest) {
|
||||||
|
std::cout << "failed to extract public key" << std::endl;
|
||||||
|
return 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto & ident = dest->GetIdentHash();
|
||||||
|
if (verbose) {
|
||||||
|
std::cout << "Destination: " << dest->ToBase64() << std::endl;
|
||||||
|
std::cout << "Destination Hash: " << ident.ToBase64() << std::endl;
|
||||||
|
std::cout << "B32 Address: " << ident.ToBase32() << ".b32.i2p" << std::endl;
|
||||||
|
std::cout << "Signature Type: " << (int) dest->GetSigningKeyType() << std::endl;
|
||||||
|
std::cout << "Encryption Type: " << (int) dest->GetCryptoKeyType() << std::endl;
|
||||||
|
} else {
|
||||||
|
if(print_full) {
|
||||||
|
std::cout << dest->ToBase64() << std::endl;
|
||||||
|
} else {
|
||||||
|
std::cout << ident.ToBase32() << ".b32.i2p" << std::endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue