Sign in
boringssl
/
boringssl.git
/
ddd5ba78a949c5458aad9f7c3f19d214a2e8338e
/
.
/
crypto
/
fipsmodule
/
bcm_hashunset_test.c
blob: c62761ea9aca4391a51200b574f4c1ead52f53d3 [
file
]
#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
;
}