Is having a Path Length of 0 and None the same thing for Basic Constraint's of a CA type? To clarify, does a path length of 0 mean that the CA can issue no certificates while a path length of none mean that it can issue an infinite amount of certificates?
相关问题
- Highlight parent path to the root
- How to get a fixed number of evenly spaced points
- Keychain unable to import p12 properly and system
- Python os.path.commonprefix - is there a path orie
- Using relative url for [removed] in child iframe
相关文章
- linux / libusb get usb device path
- How to get server path of physical path ?
- Does the apple push notification distribution cert
- Openssl telling certificate has expired when it ha
- OpenSSL error - unable to get local issuer certifi
- Why ContextClassLoader returns path with exclamati
- libxml2.2.dylib reference in python program
- How can I resolve a relative path to absolute path
Taken from RFC 5280, section 4.2.1.9:
I.e. a
pathLenConstraint
of 0 does still allow the CA to issue certificates, but these certificates must be end-entity-certificates (the CA flag in BasicConstraints is false - these are the "normal" certificates that are issued to people or organizations).It also implies that with this certificate, the CA must not issue intermediate CA certificates (where the CA flag is true again - these are certificates that could potentially issue further certificates, thereby increasing the
pathLen
by 1).An absent
pathLenConstraint
on the other hand means that there is no limitation considering the length of certificate paths built from an end-entity certificate that would lead up to our example CA certificate. This implies that the CA could issue a intermediate certificate for a sub CA, this sub CA could again issue an intermediate certificate, this sub CA could again... until finally one sub CA would issue an end-entity certificate.If the
pathLenConstraint
of a given CA certificate is > 0, then it expresses the number of possible intermediate CA certificates in a path built from an end-entity certificate up to the CA certificate. Let's say CA X has apathLenConstraint
of 2, the end-entity certificate is issued to EE. Then the following scenarios are valid (I denoting an intermediate CA certificate)but this and those scenarios with even more intermediate CAs are not