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