#include "time_helpers.h" #include namespace BareMinimumCrypto { using namespace std; using namespace chrono; int64_t get_seconds_since_epoch () { const auto utc_now = system_clock::now (); return duration_cast (utc_now.time_since_epoch ()).count (); } }