-
-
Notifications
You must be signed in to change notification settings - Fork 126
/
certificates.go
239 lines (188 loc) · 6.16 KB
/
certificates.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package utils
import (
"crypto/x509"
"encoding/pem"
"math/big"
"time"
"crypto/rand"
"crypto"
"crypto/rsa"
"crypto/ed25519"
"crypto/x509/pkix"
"encoding/asn1"
"crypto/ecdsa"
"crypto/elliptic"
"os"
"github.com/go-acme/lego/v4/certcrypto"
"github.com/go-acme/lego/v4/certificate"
"github.com/go-acme/lego/v4/challenge/http01"
"github.com/go-acme/lego/v4/lego"
"github.com/go-acme/lego/v4/registration"
"github.com/go-acme/lego/v4/challenge/tlsalpn01"
"github.com/go-acme/lego/v4/providers/dns"
)
func GenerateRSAWebCertificates(domains []string) (string, string) {
// generate self signed certificate
Log("Generating RSA Web Certificates for " + GetMainConfig().HTTPConfig.Hostname)
// generate private key
privateKey, err := rsa.GenerateKey(rand.Reader, 2048)
if err != nil {
Fatal("Generating RSA Key", err)
}
// generate public key
publicKey := &privateKey.PublicKey
// random SerialNumber
serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
if err != nil {
Fatal("Generating Serial Number", err)
}
// generate certificate
template := x509.Certificate{
SerialNumber: serialNumber,
Subject: pkix.Name{
Organization: []string{"Cosmos Personal Server"},
},
NotBefore: time.Now(),
NotAfter: time.Now().Add(365 * 24 * time.Hour),
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature | x509.KeyUsageCertSign,
ExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
BasicConstraintsValid: true,
IsCA: true,
DNSNames: []string{GetMainConfig().HTTPConfig.Hostname},
// IPAddresses: []net.IP{},
SubjectKeyId: []byte{1, 2, 3, 4, 6},
AuthorityKeyId: []byte{1, 2, 3, 4, 5},
PermittedDNSDomainsCritical: false,
PermittedDNSDomains: domains,
// PermittedIPRanges: ,
ExcludedDNSDomains: []string{},
// ExcludedIPRanges:,
PermittedURIDomains: []string{},
ExcludedURIDomains: []string{},
CRLDistributionPoints: []string{},
PolicyIdentifiers: []asn1.ObjectIdentifier{},
}
// create certificate
cert, err := x509.CreateCertificate(rand.Reader, &template, &template, publicKey, privateKey)
if err != nil {
Fatal("Creating RSA Key", err)
}
// return private , and public key
return string(pem.EncodeToMemory(&pem.Block{Type: "CERTIFICATE", Bytes: cert})), string(pem.EncodeToMemory(&pem.Block{Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(privateKey)}))
}
func GenerateEd25519Certificates() (string, string) {
// generate self signed certificate
// generate private key
publicKey, privateKey, err := ed25519.GenerateKey(rand.Reader)
if err != nil {
Fatal("Generating ed25519 Key", err)
}
bpriv, err := x509.MarshalPKCS8PrivateKey(privateKey)
if err != nil {
Fatal("Generating ed25519 private Key", err)
}
bpub, err := x509.MarshalPKIXPublicKey(publicKey)
if err != nil {
Fatal("Generating ed25519 public Key", err)
}
return string(pem.EncodeToMemory(&pem.Block{Type: "PUBLIC KEY", Bytes: bpub})), string(pem.EncodeToMemory(&pem.Block{Type: "PRIVATE KEY", Bytes: bpriv}))
}
type CertUser struct {
Email string
Registration *registration.Resource
key crypto.PrivateKey
}
func (u *CertUser) GetEmail() string {
return u.Email
}
func (u CertUser) GetRegistration() *registration.Resource {
return u.Registration
}
func (u *CertUser) GetPrivateKey() crypto.PrivateKey {
return u.key
}
func DoLetsEncrypt() (string, string) {
config := GetMainConfig()
LetsEncryptErrors = []string{}
privateKey, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
if err != nil {
Error("LETSENCRYPT_ECDSA", err)
LetsEncryptErrors = append(LetsEncryptErrors, err.Error())
return "", ""
}
myUser := CertUser{
Email: config.HTTPConfig.SSLEmail,
key: privateKey,
}
certConfig := lego.NewConfig(&myUser)
if os.Getenv("ACME_STAGING") == "true" {
certConfig.CADirURL = "https://acme-staging-v02.api.letsencrypt.org/directory"
} else {
certConfig.CADirURL = "https://acme-v02.api.letsencrypt.org/directory"
}
certConfig.Certificate.KeyType = certcrypto.RSA2048
client, err := lego.NewClient(certConfig)
if err != nil {
Error("LETSENCRYPT_NEW", err)
LetsEncryptErrors = append(LetsEncryptErrors, err.Error())
return "", ""
}
if config.HTTPConfig.DNSChallengeProvider != "" {
provider, err := dns.NewDNSChallengeProviderByName(config.HTTPConfig.DNSChallengeProvider)
if err != nil {
Error("LETSENCRYPT_DNS", err)
LetsEncryptErrors = append(LetsEncryptErrors, err.Error())
return "", ""
}
err = client.Challenge.SetDNS01Provider(provider)
} else {
err = client.Challenge.SetHTTP01Provider(http01.NewProviderServer("", config.HTTPConfig.HTTPPort))
if err != nil {
Error("LETSENCRYPT_HTTP01", err)
LetsEncryptErrors = append(LetsEncryptErrors, err.Error())
return "", ""
}
err = client.Challenge.SetTLSALPN01Provider(tlsalpn01.NewProviderServer("", config.HTTPConfig.HTTPSPort))
if err != nil {
Error("LETSENCRYPT_TLS01", err)
LetsEncryptErrors = append(LetsEncryptErrors, err.Error())
return "", ""
}
}
// New users will need to register
reg, err := client.Registration.Register(registration.RegisterOptions{TermsOfServiceAgreed: true})
if err != nil {
Error("LETSENCRYPT_REGISTER", err)
LetsEncryptErrors = append(LetsEncryptErrors, err.Error())
return "", ""
}
myUser.Registration = reg
request := certificate.ObtainRequest{
Domains: LetsEncryptValidOnly(GetAllHostnames(true, false), config.HTTPConfig.DNSChallengeProvider != ""),
Bundle: true,
}
certificates, err := client.Certificate.Obtain(request)
if err != nil {
Error("LETSENCRYPT_OBTAIN", err)
LetsEncryptErrors = append(LetsEncryptErrors, err.Error())
return "", ""
}
// return cert and key
return string(certificates.Certificate), string(certificates.PrivateKey)
}
// You'll need a user or account type that implements acme.User
type MyUser struct {
Email string
Registration *registration.Resource
key crypto.PrivateKey
}
func (u *MyUser) GetEmail() string {
return u.Email
}
func (u MyUser) GetRegistration() *registration.Resource {
return u.Registration
}
func (u *MyUser) GetPrivateKey() crypto.PrivateKey {
return u.key
}