aboutsummaryrefslogtreecommitdiffstats
path: root/SoftHSMv2/modules/tests/test_botan_rawpss.cpp
blob: ba7ad011d0d96ae3b8c0483cf5590570e860cc1e (plain)
1
2
3
4
5
6
7
8
9
10
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;
}