summaryrefslogtreecommitdiff
path: root/ec2n.cpp
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2003-07-04 00:17:37 +0000
committerweidai <weidai11@users.noreply.github.com>2003-07-04 00:17:37 +0000
commitf278895908e663a6a5a2c1f63e5523c5004f5d20 (patch)
tree0536d87e504a82920156c239bc5ae6aa43e70ebc /ec2n.cpp
parente43f74604744291d3a99b8bfe81d94af4ba6abbd (diff)
downloadcryptopp-git-f278895908e663a6a5a2c1f63e5523c5004f5d20.tar.gz
create DLL version, fix GetNextIV() bug in CTR and OFB modes
Diffstat (limited to 'ec2n.cpp')
-rw-r--r--ec2n.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/ec2n.cpp b/ec2n.cpp
index c6494efd..d668c4f0 100644
--- a/ec2n.cpp
+++ b/ec2n.cpp
@@ -1,6 +1,9 @@
// ec2n.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
+
+#ifndef CRYPTOPP_IMPORTS
+
#include "ec2n.h"
#include "asn.h"
@@ -281,7 +284,6 @@ EC2N::Point EcPrecomputation<EC2N>::CascadeExponentiate(const Integer &exponent,
}
*/
-template class AbstractGroup<EC2N::Point>;
-template class DL_FixedBasePrecomputationImpl<EC2N::Point>;
-
NAMESPACE_END
+
+#endif