summaryrefslogtreecommitdiff
path: root/crypto/bytestring/bytestring_test.c
diff options
context:
space:
mode:
authorDavid Benjamin <davidben@chromium.org>2014-08-13 20:05:43 -0400
committerAdam Langley <agl@google.com>2014-08-14 16:54:56 +0000
commitc10dde465e05d54959cee3a9aec5783f44f76738 (patch)
tree61eba15e02c465c32ed46dd37d07ff29683eb155 /crypto/bytestring/bytestring_test.c
parent82b7da271ff13a2878e921f0d262812d111a7b84 (diff)
downloadsrc-c10dde465e05d54959cee3a9aec5783f44f76738.tar.gz
Only allow indefinite lengths for constructed types.
Equivalent of e532f823d689d37571d7a58edd24533a951f35d9 for CBS. Change-Id: I5c31f589db119115c78da3f0d592d71254836f89 Reviewed-on: https://boringssl-review.googlesource.com/1508 Reviewed-by: Adam Langley <agl@google.com>
Diffstat (limited to 'crypto/bytestring/bytestring_test.c')
-rw-r--r--crypto/bytestring/bytestring_test.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/crypto/bytestring/bytestring_test.c b/crypto/bytestring/bytestring_test.c
index e02eeaa..20ce571 100644
--- a/crypto/bytestring/bytestring_test.c
+++ b/crypto/bytestring/bytestring_test.c
@@ -151,6 +151,7 @@ static int test_get_indef() {
static const uint8_t kDataWithBadInternalLength[] = {0x30, 0x80, 0x01, 0x01};
static const uint8_t kDataNested[] = {0x30, 0x80, 0x30, 0x80, 0x30, 0x80,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
+ static const uint8_t kDataPrimitive[] = {0x02, 0x80, 0x00, 0x00};
CBS data, contents;
CBS_init(&data, kData1, sizeof(kData1));
@@ -188,6 +189,14 @@ static int test_get_indef() {
return 0;
}
+ CBS_init(&data, kDataPrimitive, sizeof(kDataPrimitive));
+ if (CBS_get_asn1_ber(&data, &contents, 0x02)) {
+ /* Indefinite lengths should not be supported for non-constructed
+ * elements. */
+ fprintf(stderr, "Parsed non-constructed element with indefinite length\n");
+ return 0;
+ }
+
return 1;
}