external/boringssl: Sync to 58e449904e248f34bdfc2be7a609c58bcb0257b7.

This includes the following changes:

https://boringssl.googlesource.com/boringssl/+log/2c1523733a71166943e52da11ac2eae82b0227b8..58e449904e248f34bdfc2be7a609c58bcb0257b7

Test: BoringSSL CTS Presubmits
Change-Id: I1a825139c8c7076d09b8a3acc5f09a547a7cbe0d
diff --git a/src/crypto/bn/sqrt.c b/src/crypto/bn/sqrt.c
index f806ea2..0342bc0 100644
--- a/src/crypto/bn/sqrt.c
+++ b/src/crypto/bn/sqrt.c
@@ -56,6 +56,8 @@
 
 #include <openssl/err.h>
 
+#include "internal.h"
+
 
 BIGNUM *BN_mod_sqrt(BIGNUM *in, const BIGNUM *a, const BIGNUM *p, BN_CTX *ctx) {
   /* Compute a square root of |a| mod |p| using the Tonelli/Shanks algorithm
@@ -253,7 +255,7 @@
       }
     }
 
-    r = BN_kronecker(y, q, ctx); /* here 'q' is |p| */
+    r = bn_jacobi(y, q, ctx); /* here 'q' is |p| */
     if (r < -1) {
       goto end;
     }