fd49993c3b
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>
12 lines
251 B
C
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;
|
|
}
|