Use libcrypto_static instead of libcrypto

Replace libcrypto with libcrypto_static, which can be protected through
visibility to ensure only modules that don't affect FIPS certification
can use it.

Bug: 141248879
Test: m checkbuild
Change-Id: I991e805f555cbebeb96e253910ab155b7fd22a0c
diff --git a/Android.bp b/Android.bp
index 82d293e..b4dfd13 100644
--- a/Android.bp
+++ b/Android.bp
@@ -233,7 +233,7 @@
     ],
     static_libs: [
         "libbase",
-        "libcrypto",
+        "libcrypto_static",
         "libexpat",
         "libssl",
         "libz",
@@ -583,7 +583,7 @@
     cflags: ["-Wno-incompatible-pointer-types-discards-qualifiers"],
     static_libs: [
         "libssl",
-        "libcrypto",
+        "libcrypto_static",
     ],
 }