summaryrefslogtreecommitdiff
path: root/algparam.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'algparam.cpp')
-rw-r--r--algparam.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/algparam.cpp b/algparam.cpp
new file mode 100644
index 0000000..1ef7de4
--- /dev/null
+++ b/algparam.cpp
@@ -0,0 +1,16 @@
+// algparam.cpp - written and placed in the public domain by Wei Dai
+
+#include "pch.h"
+#include "algparam.h"
+#include "integer.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+const std::type_info &g_typeidInteger = typeid(Integer);
+
+void AssignIntToInteger(void *pInteger, const void *pInt)
+{
+ *reinterpret_cast<Integer *>(pInteger) = *reinterpret_cast<const int *>(pInt);
+}
+
+NAMESPACE_END