Rename crypto/{bn,evp}/asn1.c.

gyp doesn't allow two files to share the same name to avoid bugs in OS X
libtool, so asn1.c's need to all get a prefix.

Change-Id: I3593597912c49dd02655cae329fb253ed4f6f56d
Reviewed-on: https://boringssl-review.googlesource.com/5431
Reviewed-by: Adam Langley <agl@google.com>
diff --git a/crypto/bn/CMakeLists.txt b/crypto/bn/CMakeLists.txt
index fa6d207..63029cf 100644
--- a/crypto/bn/CMakeLists.txt
+++ b/crypto/bn/CMakeLists.txt
@@ -38,8 +38,8 @@
 
   add.c
   asm/x86_64-gcc.c
-  asn1.c
   bn.c
+  bn_asn1.c
   cmp.c
   convert.c
   ctx.c
diff --git a/crypto/bn/asn1.c b/crypto/bn/bn_asn1.c
similarity index 100%
rename from crypto/bn/asn1.c
rename to crypto/bn/bn_asn1.c
diff --git a/crypto/evp/CMakeLists.txt b/crypto/evp/CMakeLists.txt
index 061f935..5c22a8a 100644
--- a/crypto/evp/CMakeLists.txt
+++ b/crypto/evp/CMakeLists.txt
@@ -6,9 +6,9 @@
   OBJECT
 
   algorithm.c
-  asn1.c
   digestsign.c
   evp.c
+  evp_asn1.c
   evp_ctx.c
   p_dsa_asn1.c
   p_ec.c
diff --git a/crypto/evp/asn1.c b/crypto/evp/evp_asn1.c
similarity index 100%
rename from crypto/evp/asn1.c
rename to crypto/evp/evp_asn1.c