/* crsyspqc-cpp-min.cpp */
#include <iostream>
#include "crsyspqc.hpp"
int main() {
// Get version of native DLL (if this works, the library has been installed correctly)
int n = crsyspqc::General::Version();
std::cout << "Version=" << n << std::endl;
// Get length in bytes of signature for SLH-DSA-SHA2-128f
std::cout << "DSA::SignatureSize(SLH-DSA-SHA2-128f)=" << crsyspqc::Dsa::SignatureSize(crsyspqc::Dsa::Alg::SLH_DSA_SHA2_128F) << std::endl; // 17088
}