summaryrefslogtreecommitdiff
path: root/rabin.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-12-03 05:05:56 -0500
committerJeffrey Walton <noloader@gmail.com>2016-12-03 05:05:56 -0500
commitba75834ae9b3846a19291c8c281626dd0a891779 (patch)
tree85c0492501a0f44c640120e9cacc740354824a47 /rabin.h
parentbded4d385fcb74c517e35bf252ac8c6d60a0599f (diff)
downloadcryptopp-git-ba75834ae9b3846a19291c8c281626dd0a891779.tar.gz
Removed VC++ 5.0 and 6.0 workarounds (Issue 342)
Diffstat (limited to 'rabin.h')
-rw-r--r--rabin.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/rabin.h b/rabin.h
index dcc86c5e..799676d6 100644
--- a/rabin.h
+++ b/rabin.h
@@ -90,13 +90,13 @@ struct Rabin
//! Rabin encryption
template <class STANDARD>
-struct RabinES : public TF_ES<STANDARD, Rabin>
+struct RabinES : public TF_ES<Rabin, STANDARD>
{
};
//! Rabin signature
template <class STANDARD, class H>
-struct RabinSS : public TF_SS<STANDARD, H, Rabin>
+struct RabinSS : public TF_SS<Rabin, STANDARD, H>
{
};