medcrypt::guardian::AuthenticationDomain
Last updated
Authentication restriction container. Restrictions for use by an authentication agent.
#include <AuthenticationManager.h>
Name
std::string
std::string
std::list< std::string >
std::list< std::vector< uint8_t > >
std::string service_name;the name of the service the contained
transport specific authentication domain, usually string representation of a port
are the addresses in the following list allowed or denied
string representations of IP addresses
are the keys in the following list allowed or denied
vectors of public key bytes
Guardian does not create log files. Instead, logging is controlled by the application:
Guardian logs to stdout and stderr, which appear in the terminal/CLI of the running application during execution. Look for specific error codes or connection failures in the output.
Custom logging: Use SetLoggingCallback to redirect log messages to a callback function, stopping terminal output and allowing custom log handling
Log control: Applications can control log level and verbosity.
Guardian Cloud UI: Check the Guardian Cloud interface for additional error details and provisioning status.
Last updated
std::string domain;AuthenticationAllowDenyEnum::Type ip_allow_deny;std::list< std::string > ip_addresses;AuthenticationAllowDenyEnum::Type key_allow_deny;std::list< std::vector< uint8_t > > public_keys;