-
Notifications
You must be signed in to change notification settings - Fork 2
/
cert_templater.go
127 lines (106 loc) · 2.34 KB
/
cert_templater.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package p12gen
import (
"crypto/x509"
"math/big"
"net"
"time"
)
type CertOption func(cert *x509.Certificate) (err error)
type CertTemplater interface {
Generate(opts ...CertOption) (certTemplate *x509.Certificate, err error)
}
func NotAfter(t time.Time) CertOption {
return func(c *x509.Certificate) (err error) {
c.NotAfter = t
return
}
}
func NotBefore(t time.Time) CertOption {
return func(c *x509.Certificate) (err error) {
c.NotBefore = t
return
}
}
func SerialNumber(sn int64) CertOption {
return func(c *x509.Certificate) (err error) {
c.SerialNumber = big.NewInt(sn)
return
}
}
func CommonName(cn string) CertOption {
return func(c *x509.Certificate) (err error) {
c.Subject.CommonName = cn
return
}
}
func EmailAddresses(emails ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.EmailAddresses = emails
return
}
}
func DNSNames(dnsNames ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.DNSNames = dnsNames
return
}
}
func Country(v ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.Subject.Country = v
return
}
}
func Organization(v ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.Subject.Organization = v
return
}
}
func OrganizationalUnit(v ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.Subject.OrganizationalUnit = v
return
}
}
func Province(v ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.Subject.Province = v
return
}
}
func CRLDistributionPoints(v ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.CRLDistributionPoints = v
return
}
}
func IssuingCertificateURL(v ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.IssuingCertificateURL = v
return
}
}
func SignatureAlgorithm(alog x509.SignatureAlgorithm) CertOption {
return func(c *x509.Certificate) (err error) {
c.SignatureAlgorithm = alog
return
}
}
func Locality(v ...string) CertOption {
return func(c *x509.Certificate) (err error) {
c.Subject.Locality = v
return
}
}
func IPAddresses(ipAddresses ...string) CertOption {
return func(c *x509.Certificate) (err error) {
var ips []net.IP
for _, ip := range ipAddresses {
netIP := net.ParseIP(ip)
ips = append(ips, netIP)
}
c.IPAddresses = ips
return
}
}