Lyra.TestEncryption
Lyra.TestEncryption
#Overview
name: Lyra.TestEncryption
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
If true, clients will send an encryption token with their request to join the server and attempt to encrypt the connection using a debug key. This is NOT SECURE and for demonstration purposes only.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Projects/Lyra/Source/LyraGame/System/LyraGameInstance.cpp:23
Scope (from outer to inner):
file
namespace Lyra
Source code excerpt:
static bool bTestEncryption = false;
static FAutoConsoleVariableRef CVarLyraTestEncryption(
TEXT("Lyra.TestEncryption"),
bTestEncryption,
TEXT("If true, clients will send an encryption token with their request to join the server and attempt to encrypt the connection using a debug key. This is NOT SECURE and for demonstration purposes only."),
ECVF_Default);
#if UE_WITH_DTLS
static bool bUseDTLSEncryption = false;