Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(32)

Delta Between Two Patch Sets: cert/cert.go

Issue 6855101: environs/ec2: make tests pass on quantal (Closed)
Left Patch Set: environs/ec2: make tests pass on quantal Created 12 years, 4 months ago
Right Patch Set: environs/ec2: make tests pass on quantal Created 12 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « [revision details] ('k') | environs/ec2/testdata/query/quantal/server/daily.current.txt » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(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
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
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 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b