RFC Errata
RFC 5878, "Transport Layer Security (TLS) Authorization Extensions", May 2010
Note: This RFC has been updated by RFC 8447, RFC 8996
Source of RFC: IETF - NON WORKING GROUPArea Assignment: sec
See Also: RFC 5878 w/ inline errata
Errata ID: 3512
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Ben Laurie
Date Reported: 2013-03-08
Verifier Name: Kathleen Moriarty
Date Verified: 2015-06-05
Section 3 says:
struct {
SupplementalDataType supplemental_data_type;
select(SupplementalDataType) {
case authz_data: AuthorizationData;
}
} SupplementalData;
It should say:
struct {
SupplementalDataType supp_data_type;
uint16 supp_data_length;
select(SupplementalDataType) {
case authz_data: AuthorizationData;
}
} SupplementalDataEntry;
supp_data_length This field is the length (in bytes) of the data
selected by SupplementalDataType.
