/* test_pqc_simple.c */

#include <stdio.h>
#include "diCrPQC.h"
int main(void)
{
	long version;
	// Get version of native DLL (if this works, the library has been installed correctly)
	version = PQC_Version();
	printf("Version=%ld\n", version);
	// Get length in bytes of signature for SLH-DSA-SHA2-128f
	printf("DSA_SignatureSize(SLH-DSA-SHA2-128f)=%ld\n", DSA_SignatureSize(PQC_SLH_DSA_SHA2_128F));  // 17088
	return 0;
}