Blame tests/slow/crypto.c

Packit Service 4684c1
#include <config.h>
Packit Service 4684c1
#include <stdint.h>
Packit Service 4684c1
#include <stdio.h>
Packit Service 4684c1
#include <string.h>
Packit Service 4684c1
#include <stdlib.h>
Packit Service 4684c1
#include <assert.h>
Packit Service 4684c1
#include <gnutls/crypto.h>
Packit Service 4684c1
Packit Service 4684c1
/* this tests whether including crypto.h is sufficient to use
Packit Service 4684c1
 * its functionality */
Packit Service 4684c1
Packit Service 4684c1
int main(int argc, char **argv)
Packit Service 4684c1
{
Packit Service 4684c1
	char output[64];
Packit Service 4684c1
	assert(gnutls_hash_fast(GNUTLS_DIG_SHA256, "abc", 3, output) >= 0);
Packit Service 4684c1
	return 0;
Packit Service 4684c1
}