From 9eb9295d78a4fbfb4b4916d597a5fcb6ee2d5677 Mon Sep 17 00:00:00 2001 From: Adam Langley Date: Wed, 2 Sep 2015 15:28:03 -0700 Subject: [PATCH] Prepare for BoringSSL update. This change tweaks things as needed so that the code will compile against both the BoringSSL that's currently in Android and a version from upstream. The BORINGSSL_201509 define is temporary to allow the switch to happen without breaking the build and a followup change will remove it. Change-Id: I3d09b5644661353723803bcbda937d34455849a5 --- keystore-engine/android_engine.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/keystore-engine/android_engine.cpp b/keystore-engine/android_engine.cpp index aa7bcbcf..bb23823f 100644 --- a/keystore-engine/android_engine.cpp +++ b/keystore-engine/android_engine.cpp @@ -220,6 +220,9 @@ const struct rsa_meth_st keystore_rsa_method = { RSA_FLAG_CACHE_PUBLIC | RSA_FLAG_OPAQUE | RSA_FLAG_EXT_PKEY, NULL /* keygen */, +#if defined(BORINGSSL_201509) + NULL /* multi_prime_keygen */, +#endif NULL /* supports_digest */, };