boringssl/crypto/fipsmodule/bcm_hashunset_test.c
Adam Langley fd49993c3b First part of the FIPS module.
Change-Id: Ic3a91ccd2c8cdc364740f256fdb8a7ff66177947
Reviewed-on: https://boringssl-review.googlesource.com/14506
Reviewed-by: Adam Langley <agl@google.com>
Commit-Queue: Adam Langley <agl@google.com>
2017-04-07 00:05:34 +00:00

12 lines
251 B
C

#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;
}