|
Botan
1.11.15
|
#include <botan/types.h>#include <string>Go to the source code of this file.
Namespaces | |
| namespace | Botan |
Defines | |
| #define | BOTAN_VERSION_CODE |
| #define | BOTAN_VERSION_CODE_FOR(a, b, c) ((a << 16) | (b << 8) | (c)) |
Functions | |
| const char * | Botan::version_cstr () |
| u32bit | Botan::version_datestamp () |
| u32bit | Botan::version_major () |
| u32bit | Botan::version_minor () |
| u32bit | Botan::version_patch () |
| std::string | Botan::version_string () |
| #define BOTAN_VERSION_CODE |
BOTAN_VERSION_CODE_FOR(BOTAN_VERSION_MAJOR, \ BOTAN_VERSION_MINOR, \ BOTAN_VERSION_PATCH)
Compare using BOTAN_VERSION_CODE_FOR, as in # if BOTAN_VERSION_CODE < BOTAN_VERSION_CODE_FOR(1,8,0) # error "Botan version too old" # endif
| #define BOTAN_VERSION_CODE_FOR | ( | a, | |
| b, | |||
| c | |||
| ) | ((a << 16) | (b << 8) | (c)) |
1.7.6.1