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@google.com>2016-02-17 23:28:48 +0300
committerAdam Langley <agl@google.com>2016-02-18 00:17:26 +0300
commitd3a49953d884d25eee0af77030ec205ef0e0a6a1 (patch)
tree5e8ff2c379d2583465930f5d44bec401e4b21190 /crypto
parentf4ef9b517ec8a0858036c5dd4418428e795fec3e (diff)
Add missing " in comment.
Change-Id: If33d3a11a0b48403fc009688b9300c92e5494d94 Reviewed-on: https://boringssl-review.googlesource.com/7160 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto')
-rw-r--r--crypto/rsa/rsa_asn1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_asn1.c b/crypto/rsa/rsa_asn1.c
index 36f6ee0c..1f3d6a24 100644
--- a/crypto/rsa/rsa_asn1.c
+++ b/crypto/rsa/rsa_asn1.c
@@ -236,7 +236,7 @@ RSA *RSA_parse_private_key(CBS *cbs) {
if (version == kVersionMulti) {
/* Although otherPrimeInfos is written as OPTIONAL in RFC 3447, it later
* says "[otherPrimeInfos] shall be omitted if version is 0 and shall
- * contain at least one instance of OtherPrimeInfo if version is 1. The
+ * contain at least one instance of OtherPrimeInfo if version is 1." The
* OPTIONAL is just so both versions share a single definition. */
CBS other_prime_infos;
if (!CBS_get_asn1(&child, &other_prime_infos, CBS_ASN1_SEQUENCE) ||