#include <cinttypes>
#include <netinet/in.h>
#include <cstdarg>
#include <cstring>
#include <sys/types.h>
#include <sys/uio.h>
#include <openssl/sha.h>
#include <openssl/evp.h>
#include "XrdVersion.hh"
#include "XProtocol/XProtocol.hh"
#include "XrdSec/XrdSecInterface.hh"
#include "XrdSec/XrdSecProtect.hh"
#include "XrdSec/XrdSecProtector.hh"
#include "XrdSys/XrdSysAtomics.hh"
#include "XrdSys/XrdSysE2T.hh"
#include "XrdSys/XrdSysPlatform.hh"
#include "XrdSys/XrdSysPthread.hh"
Go to the source code of this file.
◆ XrdSecProtection::XrdSecReq
struct XrdSecProtection::XrdSecReq |
◆ EVP_MD_CTX_free()
static void EVP_MD_CTX_free |
( |
EVP_MD_CTX * |
ctx | ) |
|
|
static |
◆ EVP_MD_CTX_new()
static EVP_MD_CTX* EVP_MD_CTX_new |
( |
| ) |
|
|
static |
Definition at line 58 of file XrdSecProtect.cc.
59 EVP_MD_CTX *ctx = (EVP_MD_CTX *)OPENSSL_malloc(
sizeof(EVP_MD_CTX));
60 if (ctx) EVP_MD_CTX_init(ctx);