#include #include #include #include #include #include #include /* this tests whether including crypto.h is sufficient to use * its functionality */ int main(int argc, char **argv) { char output[64]; assert(gnutls_hash_fast(GNUTLS_DIG_SHA256, "abc", 3, output) >= 0); return 0; }