DOCUMENTATION
Introduction
A secure C++ authentication loader with in-memory payload execution and RunPE support.
Configuration
The client is pre-configured via factory method. No manual server configuration is required.
// Embedded server configuration
OrionAuth::Client client = OrionAuth::Client::CreateDefault();
// Default settings:
// - Host: orionsolutions.shop
// - Port: 443 (HTTPS)
// - SSL: Enabled
Custom Configuration
If needed, you can still use the constructor directly:
OrionAuth::Client client("custom.host.com", 443, true);