forked from TrueCloudLab/certificates
Fix setter of basic constraints.
This commit is contained in:
parent
068bafe5a3
commit
0847af16cb
1 changed files with 11 additions and 3 deletions
|
@ -293,9 +293,17 @@ type BasicConstraints struct {
|
|||
// Set sets the basic constraints to the given certificate.
|
||||
func (b BasicConstraints) Set(c *x509.Certificate) {
|
||||
c.IsCA = b.IsCA
|
||||
if c.IsCA {
|
||||
c.BasicConstraintsValid = true
|
||||
switch {
|
||||
case b.MaxPathLen == 0:
|
||||
c.MaxPathLen = b.MaxPathLen
|
||||
if c.MaxPathLen < 0 {
|
||||
c.MaxPathLenZero = true
|
||||
case b.MaxPathLen < 0:
|
||||
c.MaxPathLen = -1
|
||||
default:
|
||||
c.MaxPathLen = b.MaxPathLen
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue