#pragma once #include <string> namespace reginfo { // Returns a 256-bit machine code as 64 hex characters (SHA-256 of CPU + system disk info). // Unique per physical machine. std::string getMachineCode(); } // namespace reginfo