| 26 | * @brief Configures SimpleCrypt with the per-machine key and HMAC integrity. |
| 27 | */ |
| 28 | MQTT::CredentialVault::CredentialVault() |
| 29 | { |
| 30 | m_simpleCrypt.setKey(Licensing::MachineID::instance().machineSpecificKey()); |
| 31 | m_simpleCrypt.setIntegrityProtectionMode(Licensing::SimpleCrypt::ProtectionHash); |
| 32 | } |
| 33 | |
| 34 | //-------------------------------------------------------------------------------------------------- |
| 35 | // Queries |
nothing calls this directly
no test coverage detected