NDEVR
API Documentation
Credentials.h
1#pragma once
2#include <NDEVR/String.h>
3#include <NDEVR/PasswordString.h>
4namespace NDEVR
5{
17}
When passwords are used inside the NDEVR engine, we don't want them logged or visible.
The core String class for the NDEVR API.
Definition String.h:95
The primary namespace for the NDEVR SDK.
int32_t sint04
-Defines an alias representing a 4 byte, signed integer.
Stores user authentication credentials including username, password, and validation state.
Definition Credentials.h:10
sint04 user_id
Numeric user ID from the server.
Definition Credentials.h:13
String ip_address
IP address of the authenticated client.
Definition Credentials.h:14
bool credentials_validated
Whether the credentials have been validated.
Definition Credentials.h:15
PasswordString user_password
The user's password (stored securely in memory).
Definition Credentials.h:12
String username
The user's login name.
Definition Credentials.h:11