Crypto++
5.6.5
Free C++ class library of cryptographic schemes
pch.h
1
// pch.h - written and placed in the public domain by Wei Dai
2
3
//! \headerfile pch.h
4
//! \brief Precompiled header file
5
6
#ifndef CRYPTOPP_PCH_H
7
#define CRYPTOPP_PCH_H
8
9
# ifdef CRYPTOPP_GENERATE_X64_MASM
10
#include "
cpu.h
"
11
12
# else
13
#include "
config.h
"
14
15
#ifdef USE_PRECOMPILED_HEADERS
16
#include "
simple.h
"
17
#include "
secblock.h
"
18
#include "
misc.h
"
19
#include "
smartptr.h
"
20
#include "stdcpp.h"
21
#endif
22
# endif
23
24
// Enable file and line numbers, if available.
25
// #if defined(_MSC_VER) && defined(_DEBUG) && defined(USE_PRECOMPILED_HEADERS)
26
// # define DEBUG_NEW new(_NORMAL_BLOCK, __FILE__, __LINE__)
27
// # define new DEBUG_NEW
28
// #endif
29
30
#endif // CRYPTOPP_PCH_H
secblock.h
Classes and functions for secure memory allocations.
smartptr.h
Classes for automatic resource management.
simple.h
Classes providing basic library services.
misc.h
Utility functions for the Crypto++ library.
cpu.h
Functions for CPU features and intrinsics.
config.h
Library configuration file.
Generated on Fri Feb 11 2022 18:35:49 for Crypto++ by
1.8.17