go-gemini/examples/cert.go

50 lines
972 B
Go
Raw Normal View History

2020-10-12 20:34:52 +00:00
// +build ignore
2020-09-27 17:50:48 +00:00
package main
import (
"log"
2020-10-13 20:50:59 +00:00
"os"
2020-09-28 03:49:41 +00:00
"time"
2020-09-27 17:50:48 +00:00
2020-09-28 22:19:59 +00:00
"git.sr.ht/~adnano/gmi"
2020-09-27 17:50:48 +00:00
)
func main() {
host := "localhost"
2020-10-13 20:50:59 +00:00
duration := 365 * 24 * time.Hour
2020-09-28 03:49:41 +00:00
crt, key, err := gmi.NewRawCertificate(host, duration)
2020-09-27 17:50:48 +00:00
if err != nil {
log.Fatal(err)
}
2020-10-13 20:50:59 +00:00
if err := writeX509KeyPair(host, crt, key); err != nil {
2020-09-27 17:50:48 +00:00
log.Fatal(err)
}
}
2020-10-13 20:50:59 +00:00
// writeX509KeyPair writes the provided certificate and private key
// to path.crt and path.key respectively.
func writeX509KeyPair(path string, crt, key []byte) error {
// Write the certificate
crtPath := path + ".crt"
crtOut, err := os.OpenFile(crtPath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
if err != nil {
return err
}
if _, err := crtOut.Write(crt); err != nil {
return err
}
// Write the private key
keyPath := path + ".key"
keyOut, err := os.OpenFile(keyPath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
if err != nil {
return err
}
if _, err := keyOut.Write(key); err != nil {
return err
}
return nil
}