1 #ifndef KEYMASTER_TOOLS_H 2 #define KEYMASTER_TOOLS_H 3 4 #include <app_nugget.h> 5 #include <application.h> 6 #include <keymaster.h> 7 #include <nos/debug.h> 8 #include <nos/NuggetClientInterface.h> 9 10 #include <memory> 11 #include <string> 12 13 namespace keymaster_tools { 14 15 void SetRootOfTrust(nos::NuggetClientInterface *client); 16 void SetBootState(nos::NuggetClientInterface *client); 17 18 } // namespace keymaster_tools 19 20 #endif // KEYMASTER_TOOLS_H 21