r5sdk/r5dev/tier1/NetKey.cpp
Kawe Mazidjatari 0734d56fe2 Add reversed 'CNetKey' class
Confirmed size, mostly unknown still. But some of this seems to be data related to OpenSSL.
2023-02-12 02:15:58 +01:00

16 lines
573 B
C++

//===========================================================================//
//
// Purpose: implementation of the CNetKey class.
// --------------------------------------------------------------------------
//===========================================================================//
#include "core/stdafx.h"
#include "NetKey.h"
//////////////////////////////////////////////////////////////////////
// Get key as Base64.
//////////////////////////////////////////////////////////////////////
const char* CNetKey::GetBase64NetKey(void) const
{
return m_szBase64;
}