summaryrefslogtreecommitdiffstats
path: root/src/PolarSSL++/EntropyContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/PolarSSL++/EntropyContext.h')
-rw-r--r--src/PolarSSL++/EntropyContext.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/PolarSSL++/EntropyContext.h b/src/PolarSSL++/EntropyContext.h
deleted file mode 100644
index 69671d32f..000000000
--- a/src/PolarSSL++/EntropyContext.h
+++ /dev/null
@@ -1,31 +0,0 @@
-
-// EntropyContext.h
-
-// Declares the cEntropyContext class representing a wrapper over entropy contexts in PolarSSL
-
-
-
-
-
-#pragma once
-
-#include "polarssl/entropy.h"
-
-
-
-
-
-class cEntropyContext
-{
- friend class cCtrDrbgContext;
-public:
- cEntropyContext(void);
- ~cEntropyContext();
-
-protected:
- entropy_context m_Entropy;
-} ;
-
-
-
-