diff options
author | Doug Hogan <doug@cvs.openbsd.org> | 2015-06-16 06:11:40 +0000 |
---|---|---|
committer | Doug Hogan <doug@cvs.openbsd.org> | 2015-06-16 06:11:40 +0000 |
commit | 0298ad9d78c40de28bbc58c4ebacf24b06379595 (patch) | |
tree | 465cb6959b5de6a77d50e9a8edcdf8b02086804e /lib/libssl/bs_cbs.c | |
parent | 791a15628c87018064103700bb594ead2fbffdb5 (diff) |
Simplify cbs_get_any_asn1_element_internal based on comments from jsing@
Diffstat (limited to 'lib/libssl/bs_cbs.c')
-rw-r--r-- | lib/libssl/bs_cbs.c | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/lib/libssl/bs_cbs.c b/lib/libssl/bs_cbs.c index ba38303c18a..1b513c9a0e2 100644 --- a/lib/libssl/bs_cbs.c +++ b/lib/libssl/bs_cbs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bs_cbs.c,v 1.9 2015/06/15 07:35:49 doug Exp $ */ +/* $OpenBSD: bs_cbs.c,v 1.10 2015/06/16 06:11:39 doug Exp $ */ /* * Copyright (c) 2014, Google Inc. * @@ -262,21 +262,17 @@ cbs_get_any_asn1_element_internal(CBS *cbs, CBS *out, unsigned *out_tag, /* Handle indefinite form length */ if (num_bytes == 0) { /* DER encoding doesn't allow for indefinite form. */ - if (strict) { + if (strict) return 0; - } else { - if ((tag & CBS_ASN1_CONSTRUCTED) != 0 && - num_bytes == 0) { - /* indefinite length */ - if (out_header_len != NULL) - *out_header_len = 2; - return CBS_get_bytes(cbs, out, 2); - } else { - /* Primitive cannot use indefinite. */ - return 0; - } - } + /* Primitive cannot use indefinite in BER or DER. */ + if ((tag & CBS_ASN1_CONSTRUCTED) == 0) + return 0; + + /* Constructed, indefinite length allowed in BER. */ + if (out_header_len != NULL) + *out_header_len = 2; + return CBS_get_bytes(cbs, out, 2); } /* CBS limitation. */ @@ -286,7 +282,7 @@ cbs_get_any_asn1_element_internal(CBS *cbs, CBS *out, unsigned *out_tag, if (!cbs_get_u(&header, &len32, num_bytes)) return 0; - /* DER has a minimum length octet requirements. */ + /* DER has a minimum length octet requirement. */ if (len32 < 128) /* Should have used short form instead */ return 0; |