summaryrefslogtreecommitdiffstats
path: root/src/mbedTLS++/EntropyContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbedTLS++/EntropyContext.cpp')
-rw-r--r--src/mbedTLS++/EntropyContext.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/mbedTLS++/EntropyContext.cpp b/src/mbedTLS++/EntropyContext.cpp
new file mode 100644
index 000000000..aea056f4e
--- /dev/null
+++ b/src/mbedTLS++/EntropyContext.cpp
@@ -0,0 +1,29 @@
+
+// EntropyContext.cpp
+
+// Implements the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS
+
+#include "Globals.h"
+#include "EntropyContext.h"
+
+
+
+
+
+cEntropyContext::cEntropyContext(void)
+{
+ mbedtls_entropy_init(&m_Entropy);
+}
+
+
+
+
+
+cEntropyContext::~cEntropyContext()
+{
+ mbedtls_entropy_free(&m_Entropy);
+}
+
+
+
+