1
0
mirror of https://github.com/PurpleI2P/i2pd-tools synced 2025-01-11 15:27:59 +00:00

show offline signature expiration time and trasient signature type

This commit is contained in:
orignal 2019-02-20 12:59:27 -05:00
parent 672428b7a5
commit 0dabbf6798
2 changed files with 19 additions and 2 deletions

2
i2pd

@ -1 +1 @@
Subproject commit 80ffe13f3e2b00e35ad4acb68e12b0ff891a7967
Subproject commit d40a029dae39a1c4185117b880b16b7d8e391985

View File

@ -1,12 +1,23 @@
#include "Identity.h"
#include "I2PEndian.h"
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <unistd.h>
#include <stdio.h>
#include <time.h>
#include "common/key.hpp"
std::string ConvertTime (time_t t)
{
struct tm *tm = localtime(&t);
char date[128];
snprintf(date, sizeof(date), "%02d/%02d/%d %02d:%02d:%02d", tm->tm_mday, tm->tm_mon + 1, tm->tm_year + 1900, tm->tm_hour, tm->tm_min, tm->tm_sec);
return date;
}
int main(int argc, char * argv[])
{
if(argc == 1) {
@ -62,7 +73,13 @@ int main(int argc, char * argv[])
std::cout << "B32 Address: " << ident.ToBase32() << ".b32.i2p" << std::endl;
std::cout << "Signature Type: " << SigTypeToName(dest->GetSigningKeyType()) << std::endl;
std::cout << "Encryption Type: " << (int) dest->GetCryptoKeyType() << std::endl;
if (keys.IsOfflineSignature ()) std::cout << "Offline signature" << std::endl;
if (keys.IsOfflineSignature ())
{
std::cout << "Offline signature" << std::endl;
const auto& offlineSignature = keys.GetOfflineSignature ();
std::cout << "Expires: " << ConvertTime (bufbe32toh(offlineSignature.data ())) << std::endl;
std::cout << "Transient Signature Type: " << SigTypeToName(bufbe16toh(offlineSignature.data () + 4)) << std::endl;
}
} else {
if(print_full) {
std::cout << dest->ToBase64() << std::endl;