* @brief Configures SimpleCrypt with a per-machine key and HMAC integrity. */
| 39 | * @brief Configures SimpleCrypt with a per-machine key and HMAC integrity. |
| 40 | */ |
| 41 | AI::KeyVault::KeyVault() |
| 42 | { |
| 43 | m_simpleCrypt.setKey(Licensing::MachineID::instance().machineSpecificKey()); |
| 44 | m_simpleCrypt.setIntegrityProtectionMode(Licensing::SimpleCrypt::ProtectionHash); |
| 45 | } |
| 46 | |
| 47 | //-------------------------------------------------------------------------------------------------- |
| 48 | // Queries |
nothing calls this directly
no test coverage detected