MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / CryptConfig

Method CryptConfig

libcppcryptfs/config/cryptconfig.cpp:71–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

69#include <atlstr.h>
70
71CryptConfig::CryptConfig()
72{
73 m_N = 0;
74 m_R = 0;
75 m_P = 0;
76
77
78 m_PlaintextNames = false;
79 m_DirIV = false;
80 m_EMENames = false;
81 m_GCMIV128 = false;
82 m_LongNames = false;
83 m_AESSIV = false;
84 m_Raw64 = false;
85 m_HKDF = false;
86 m_reverse = false;
87 m_LongNameMax = MAX_LONGNAMEMAX;
88
89 m_pKeyBuf = NULL;
90
91 m_Version = 0;
92
93 m_serial = DEFAULT_VOLUME_SERIAL_NUMBER;
94
95 m_pGcmContentKey = NULL;
96
97 m_fs_feature_disable_mask = 0;
98
99 m_DenyAccessToOthers = false;
100}
101
102
103CryptConfig::~CryptConfig()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected