iso7816: correct the descriptions of the class byte

Some of the range strings for the ISO 7816 class byte were not correct.
Update them to match the ISO 7816 specification.

Change-Id: Ieae7baac7e2428293525dd940eddc6bf5406a446
Reviewed-on: https://code.wireshark.org/review/33479
Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Petri-Dish: Martin Kaiser <wireshark@kaiser.cx>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Martin Kaiser 2019-06-02 18:25:10 +02:00 committed by Anders Broman
parent 44eaaacf12
commit 4e1a5f6df2
1 changed files with 2 additions and 2 deletions

View File

@ -208,9 +208,9 @@ static const range_string iso7816_sw1[] = {
static const range_string iso7816_class_rvals[] = {
{0x00, 0x0F, "structure and coding according to ISO/IEC 7816" },
{0x10, 0x7F, "reserved for future use" },
{0x80, 0x8F, "structure and coding according to ISO/IEC 7816" },
{0x80, 0x9F, "structure according to ISO/IEC 7816, coding is proprietary" },
{0xA0, 0xAF, "structure and coding according to ISO/IEC 7816 unless specified otherwise by the application context" },
{0xB0, 0xCF, "structure and coding according to ISO/IEC 7816" },
{0xB0, 0xCF, "structure according to ISO/IEC 7816" },
{0xD0, 0xFE, "proprietary structure and coding" },
{0xFF, 0xFF, "reserved for Protocol Type Selection" },
{0, 0, NULL}