LEFT | RIGHT |
(no file at all) | |
1 package cert | 1 package cert |
2 | 2 |
3 import ( | 3 import ( |
4 "crypto/rand" | 4 "crypto/rand" |
5 "crypto/rsa" | 5 "crypto/rsa" |
6 "crypto/sha1" | 6 "crypto/sha1" |
7 "crypto/tls" | 7 "crypto/tls" |
8 "crypto/x509" | 8 "crypto/x509" |
9 "crypto/x509/pkix" | 9 "crypto/x509/pkix" |
10 "encoding/pem" | 10 "encoding/pem" |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 Subject: pkix.Name{ | 87 Subject: pkix.Name{ |
88 // TODO quote the environment name when we start using | 88 // TODO quote the environment name when we start using |
89 // Go version 1.1. See Go issue 3791. | 89 // Go version 1.1. See Go issue 3791. |
90 CommonName: fmt.Sprintf("juju-generated CA for environ
ment %s", envName), | 90 CommonName: fmt.Sprintf("juju-generated CA for environ
ment %s", envName), |
91 Organization: []string{"juju"}, | 91 Organization: []string{"juju"}, |
92 }, | 92 }, |
93 NotBefore: now.UTC().Add(-5 * time.Minute), | 93 NotBefore: now.UTC().Add(-5 * time.Minute), |
94 NotAfter: expiry.UTC(), | 94 NotAfter: expiry.UTC(), |
95 SubjectKeyId: bigIntHash(key.N), | 95 SubjectKeyId: bigIntHash(key.N), |
96 KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUs
ageDigitalSignature | x509.KeyUsageCertSign, | 96 KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUs
ageDigitalSignature | x509.KeyUsageCertSign, |
97 BasicConstraintsValid: true, | |
98 IsCA: true, | 97 IsCA: true, |
99 MaxPathLen: 0, // Disallow delegation for now. | 98 MaxPathLen: 0, // Disallow delegation for now. |
| 99 BasicConstraintsValid: true, |
100 } | 100 } |
101 certDER, err := x509.CreateCertificate(rand.Reader, template, template,
&key.PublicKey, key) | 101 certDER, err := x509.CreateCertificate(rand.Reader, template, template,
&key.PublicKey, key) |
102 if err != nil { | 102 if err != nil { |
103 return nil, nil, fmt.Errorf("canot create certificate: %v", err) | 103 return nil, nil, fmt.Errorf("canot create certificate: %v", err) |
104 } | 104 } |
105 certPEM = pem.EncodeToMemory(&pem.Block{ | 105 certPEM = pem.EncodeToMemory(&pem.Block{ |
106 Type: "CERTIFICATE", | 106 Type: "CERTIFICATE", |
107 Bytes: certDER, | 107 Bytes: certDER, |
108 }) | 108 }) |
109 keyPEM = pem.EncodeToMemory(&pem.Block{ | 109 keyPEM = pem.EncodeToMemory(&pem.Block{ |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 Bytes: x509.MarshalPKCS1PrivateKey(key), | 166 Bytes: x509.MarshalPKCS1PrivateKey(key), |
167 }) | 167 }) |
168 return certPEM, keyPEM, nil | 168 return certPEM, keyPEM, nil |
169 } | 169 } |
170 | 170 |
171 func bigIntHash(n *big.Int) []byte { | 171 func bigIntHash(n *big.Int) []byte { |
172 h := sha1.New() | 172 h := sha1.New() |
173 h.Write(n.Bytes()) | 173 h.Write(n.Bytes()) |
174 return h.Sum(nil) | 174 return h.Sum(nil) |
175 } | 175 } |
LEFT | RIGHT |