Merge "Check FIPS_mode() rather than explicitly calling BORINGSSL_self_test."

This commit is contained in:
Tobias Thierer
2019-09-13 16:56:06 +00:00
committed by Gerrit Code Review

View File

@@ -22,7 +22,7 @@
namespace {
static jint runSelfTest(JNIEnv* env, jobject /* clazz */) {
return BORINGSSL_self_test();
return FIPS_mode();
}
static const JNINativeMethod methods[] = {
@@ -39,4 +39,4 @@ int register_android_server_devicepolicy_CryptoTestHelper(JNIEnv *env) {
env, "com/android/server/devicepolicy/CryptoTestHelper", methods, NELEM(methods));
}
} // namespace android
} // namespace android