diff options
author | madmaxoft <github@xoft.cz> | 2014-04-24 21:34:45 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2014-04-24 21:53:41 +0200 |
commit | c701adbd241ea84d6f64842e8015c1009a41d786 (patch) | |
tree | f79c837e19767ece8c914e3dd001f944079b0aeb /src/PolarSSL++/EntropyContext.h | |
parent | Changed cByteBuffer constructor to take a size_t instead of int. (diff) | |
download | cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.gz cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.bz2 cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.lz cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.xz cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.tar.zst cuberite-c701adbd241ea84d6f64842e8015c1009a41d786.zip |
Diffstat (limited to '')
-rw-r--r-- | src/PolarSSL++/EntropyContext.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/PolarSSL++/EntropyContext.h b/src/PolarSSL++/EntropyContext.h new file mode 100644 index 000000000..bc7fff066 --- /dev/null +++ b/src/PolarSSL++/EntropyContext.h @@ -0,0 +1,31 @@ + +// 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; +} ; + + + + |