Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2015-07-14 00:03:20 +0300
committerDavid Benjamin <davidben@google.com>2015-07-14 00:18:26 +0300
commit7f15ff53d82a1991d6732d2303eb652b1cf7e023 (patch)
tree8cb6380cceb6561db513f8a88145cf1dcafc1859 /crypto
parent7ca4b42146052d2cd108582daa2ddc64da74f959 (diff)
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>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/CMakeLists.txt2
-rw-r--r--crypto/bn/bn_asn1.c (renamed from crypto/bn/asn1.c)0
-rw-r--r--crypto/evp/CMakeLists.txt2
-rw-r--r--crypto/evp/evp_asn1.c (renamed from crypto/evp/asn1.c)0
4 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/CMakeLists.txt b/crypto/bn/CMakeLists.txt
index fa6d2074..63029cf7 100644
--- a/crypto/bn/CMakeLists.txt
+++ b/crypto/bn/CMakeLists.txt
@@ -38,8 +38,8 @@ add_library(
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
index 81e7b897..81e7b897 100644
--- a/crypto/bn/asn1.c
+++ b/crypto/bn/bn_asn1.c
diff --git a/crypto/evp/CMakeLists.txt b/crypto/evp/CMakeLists.txt
index 061f9351..5c22a8a3 100644
--- a/crypto/evp/CMakeLists.txt
+++ b/crypto/evp/CMakeLists.txt
@@ -6,9 +6,9 @@ add_library(
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
index 3df9f52b..3df9f52b 100644
--- a/crypto/evp/asn1.c
+++ b/crypto/evp/evp_asn1.c