#include #include "../internal.hpp" namespace aurora::card { uint64_t getGCTime() { time_t sysTime, tzDST; time(&sysTime); // Account for DST where needed tm* gmTime = localtime(&sysTime); if (gmTime->tm_isdst == 1) tzDST = 3600; else tzDST = 0; // Lazy way to get local time in sec gmTime = gmtime(&sysTime); time_t tzDiff = sysTime - mktime(gmTime); return static_cast(sysTime + tzDiff + tzDST) - 0x386D4380; } void calculateChecksumBE(const uint16_t* data, size_t len, uint16_t* checksum, uint16_t* checksumInv) { *checksum = 0; *checksumInv = 0; for (size_t i = 0; i < len; ++i) { *checksum += bswap(data[i]); *checksumInv += bswap(static_cast(data[i] ^ 0xFFFF)); } *checksum = bswap(*checksum); *checksumInv = bswap(*checksumInv); if (*checksum == 0xFFFF) *checksum = 0; if (*checksumInv == 0xFFFF) *checksumInv = 0; } } // namespace aurora::card