Sign in
boringssl
/
boringssl.git
/
fd49993c3b94aef54669e095f1e6c417efb202aa
/
.
/
crypto
/
fipsmodule
/
bcm_hashunset_test.c
blob: c62761ea9aca4391a51200b574f4c1ead52f53d3 [
file
] [
log
] [
blame
]
#include
<openssl/digest.h>
#if !defined(BORINGSSL_FIPS)
#error
"This file should not be built outside of the FIPS build."
#endif
int
main
(
void
)
{
/* This program only needs to trigger the FIPS power-on self-test. */
EVP_sha256
();
return
0
;
}