You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a picture/diagram explaining how to read parse a byte. Example:
Context Specific
| Context Specific
| | Primitive
| | | Encoded tag values
| | | |-------|
| | | |
8 7 6 5 4 3 2 1
1 0 0 0 0 0 0 1
= 129
which in hex is 0x81
and when looking at the CRL IssuerDistributionPoint flag onlyContainsUserCerts: 30038101FF
RFC 5280 Section 5.2.5
IssuingDistributionPoint ::= SEQUENCE {
distributionPoint [0] DistributionPointName OPTIONAL,
onlyContainsUserCerts [1] BOOLEAN DEFAULT FALSE,
onlyContainsCACerts [2] BOOLEAN DEFAULT FALSE,
...
}
I can tell that the onlyContainsUserCerts flag is set and nothing else is.
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: