#ifndef BORINGSSL_HEADER_FIPS_H
#define BORINGSSL_HEADER_FIPS_H

#include <openssl/base.h>

#if defined(__cplusplus)
extern "C" {
#endif

// Return 1 if the module is in FIPS approved mode, o.w, return 0;
OPENSSL_EXPORT int FIPS_status();

// Return a version text string
OPENSSL_EXPORT const char *FIPS_bssl_module_version_text(void);

#if defined(__cplusplus)
}
#endif

#endif // END of BORINGSSL_HEADER_FIPS_H
