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

Class DirIvCacheNode

libcppcryptfs/filename/dirivcache.h:39–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37using namespace std;
38
39class DirIvCacheNode {
40
41public:
42 wstring m_key;
43 unsigned char m_dir_iv[DIR_IV_LEN];
44 list<DirIvCacheNode*>::iterator m_list_it; // holds position in lru list
45 ULONGLONG m_timestamp; // milliseconds
46 FILETIME m_last_write_time;
47 // disallow copying
48 DirIvCacheNode(DirIvCacheNode const&) = delete;
49 void operator=(DirIvCacheNode const&) = delete;
50
51 DirIvCacheNode();
52 virtual ~DirIvCacheNode();
53};
54
55
56#define DIR_IV_CACHE_ENTRIES 100

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected