fhq-server  v0.2.33
Documentation for fhq-server. FreeHackQuest is an open source platform for competitions of computer security.
utils_lxd.h
Go to the documentation of this file.
1 #ifndef UTILS_LXD_H
2 #define UTILS_LXD_H
3 
4 #include <string>
5 
6 class UtilsLXDAuth {
7  public:
8  static bool check_trust_certs(std::string &sError);
9  static bool connect_with_lxd(const std::string &sPass, std::string &sError);
10  static bool set_trusted(const std::string &sPass, std::string &sError);
11 };
12 
13 #endif
static bool check_trust_certs(std::string &sError)
Definition: utils_lxd.cpp:7
static bool connect_with_lxd(const std::string &sPass, std::string &sError)
Definition: utils_lxd.cpp:23
static bool set_trusted(const std::string &sPass, std::string &sError)
Definition: utils_lxd.cpp:42
Definition: utils_lxd.h:6