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
diff options
context:
space:
mode:
authorAdam Langley <agl@google.com>2015-09-25 00:48:32 +0300
committerAdam Langley <agl@google.com>2015-09-25 01:08:50 +0300
commitc8e664b70a6faaa5ee1d49f4ae41efe2ed3be5ad (patch)
tree61b1d2c29e23c8bba10486314015b3528a311ab6 /include/openssl/ecdsa.h
parent8c9b8783e26c3fbfc6d111017796256df6ea93dd (diff)
Fix several minor points noticed by Kenny.
∙ Some comments had the wrong function name at the beginning. ∙ Some ARM asm ended up with two #if defined(__arm__) lines – one from the .pl file and one inserted by the translation script. Change-Id: Ia8032cd09f06a899bf205feebc2d535a5078b521 Reviewed-on: https://boringssl-review.googlesource.com/6000 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'include/openssl/ecdsa.h')
-rw-r--r--include/openssl/ecdsa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/ecdsa.h b/include/openssl/ecdsa.h
index 84702c33..b7f15c49 100644
--- a/include/openssl/ecdsa.h
+++ b/include/openssl/ecdsa.h
@@ -161,7 +161,7 @@ OPENSSL_EXPORT ECDSA_SIG *ECDSA_SIG_from_bytes(const uint8_t *in,
* the result to |cbb|. It returns one on success and zero on error. */
OPENSSL_EXPORT int ECDSA_SIG_marshal(CBB *cbb, const ECDSA_SIG *sig);
-/* ECDSA_SIG_to_asn1 marshals |sig| as a DER-encoded ECDSA-Sig-Value and, on
+/* ECDSA_SIG_to_bytes marshals |sig| as a DER-encoded ECDSA-Sig-Value and, on
* success, sets |*out_bytes| to a newly allocated buffer containing the result
* and returns one. Otherwise, it returns zero. The result should be freed with
* |OPENSSL_free|. */