20 lines
336 B
C++
20 lines
336 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "json.hpp"
|
|
|
|
namespace BareMinimumCrypto {
|
|
using namespace std;
|
|
|
|
struct ExpiringSignature {
|
|
string cert_s;
|
|
vector <uint8_t> sig;
|
|
|
|
bool operator == (const ExpiringSignature & o) const;
|
|
bool operator != (const ExpiringSignature & o) const;
|
|
};
|
|
}
|