aboutsummaryrefslogtreecommitdiffstats
path: root/SoftHSMv2/modules/tests/test_botan_rawpss.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'SoftHSMv2/modules/tests/test_botan_rawpss.cpp')
-rw-r--r--SoftHSMv2/modules/tests/test_botan_rawpss.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/SoftHSMv2/modules/tests/test_botan_rawpss.cpp b/SoftHSMv2/modules/tests/test_botan_rawpss.cpp
new file mode 100644
index 0000000..ba7ad01
--- /dev/null
+++ b/SoftHSMv2/modules/tests/test_botan_rawpss.cpp
@@ -0,0 +1,11 @@
+#include <botan/botan.h>
+#include <botan/version.h>
+int main()
+{
+ using namespace Botan;
+
+#if BOTAN_VERSION_CODE >= BOTAN_VERSION_CODE_FOR(2,3,0)
+ return 0;
+#endif
+ return 1;
+}