2010-07-02 18:00:18 +01:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// Generate a self-signed X.509 certificate for a TLS server. Outputs to
|
|
|
|
// 'cert.pem' and 'key.pem' and will overwrite existing files.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2011-07-06 21:22:21 +01:00
|
|
|
"big"
|
|
|
|
"crypto/x509/pkix"
|
2010-12-14 17:22:28 +00:00
|
|
|
"crypto/rand"
|
2011-07-06 21:22:21 +01:00
|
|
|
"crypto/rsa"
|
2010-07-02 18:00:18 +01:00
|
|
|
"crypto/x509"
|
|
|
|
"encoding/pem"
|
2010-07-02 21:43:48 +01:00
|
|
|
"flag"
|
2010-07-02 18:00:18 +01:00
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2010-07-02 21:43:48 +01:00
|
|
|
var hostName *string = flag.String("host", "127.0.0.1", "Hostname to generate a certificate for")
|
2010-07-02 18:00:18 +01:00
|
|
|
|
2010-07-02 21:43:48 +01:00
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
2010-07-02 18:00:18 +01:00
|
|
|
|
2010-12-14 17:22:28 +00:00
|
|
|
priv, err := rsa.GenerateKey(rand.Reader, 1024)
|
2010-07-02 18:00:18 +01:00
|
|
|
if err != nil {
|
2011-03-13 03:35:41 +00:00
|
|
|
log.Fatalf("failed to generate private key: %s", err)
|
2010-07-02 18:00:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
now := time.Seconds()
|
|
|
|
|
|
|
|
template := x509.Certificate{
|
2011-07-06 21:22:21 +01:00
|
|
|
SerialNumber: new(big.Int).SetInt64(0),
|
|
|
|
Subject: pkix.Name{
|
2010-07-02 21:43:48 +01:00
|
|
|
CommonName: *hostName,
|
2010-12-07 21:14:55 +00:00
|
|
|
Organization: []string{"Acme Co"},
|
2010-07-02 18:00:18 +01:00
|
|
|
},
|
|
|
|
NotBefore: time.SecondsToUTC(now - 300),
|
2010-07-02 21:43:48 +01:00
|
|
|
NotAfter: time.SecondsToUTC(now + 60*60*24*365), // valid for 1 year.
|
2010-07-02 18:00:18 +01:00
|
|
|
|
|
|
|
SubjectKeyId: []byte{1, 2, 3, 4},
|
|
|
|
KeyUsage: x509.KeyUsageKeyEncipherment | x509.KeyUsageDigitalSignature,
|
|
|
|
}
|
|
|
|
|
2010-12-14 17:22:28 +00:00
|
|
|
derBytes, err := x509.CreateCertificate(rand.Reader, &template, &template, &priv.PublicKey, priv)
|
2010-07-02 18:00:18 +01:00
|
|
|
if err != nil {
|
2011-03-13 03:35:41 +00:00
|
|
|
log.Fatalf("Failed to create certificate: %s", err)
|
2010-07-02 18:00:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-04-05 07:42:14 +01:00
|
|
|
certOut, err := os.Create("cert.pem")
|
2010-07-02 18:00:18 +01:00
|
|
|
if err != nil {
|
2011-03-13 03:35:41 +00:00
|
|
|
log.Fatalf("failed to open cert.pem for writing: %s", err)
|
2010-07-02 18:00:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
pem.Encode(certOut, &pem.Block{Type: "CERTIFICATE", Bytes: derBytes})
|
|
|
|
certOut.Close()
|
log: new interface
New logging interface simplifies and generalizes.
1) Loggers now have only one output.
2) log.Stdout, Stderr, Crash and friends are gone.
Logging is now always to standard error by default.
3) log.Panic* replaces log.Crash*.
4) Exiting and panicking are not part of the logger's state; instead
the functions Exit* and Panic* simply call Exit or panic after
printing.
5) There is now one 'standard logger'. Instead of calling Stderr,
use Print etc. There are now triples, by analogy with fmt:
Print, Println, Printf
What was log.Stderr is now best represented by log.Println,
since there are now separate Print and Println functions
(and methods).
6) New functions SetOutput, SetFlags, and SetPrefix allow global
editing of the standard logger's properties. This is new
functionality. For instance, one can call
log.SetFlags(log.Lshortfile|log.Ltime|log.Lmicroseconds)
to get all logging output to show file name, line number, and
time stamp.
In short, for most purposes
log.Stderr -> log.Println or log.Print
log.Stderrf -> log.Printf
log.Crash -> log.Panicln or log.Panic
log.Crashf -> log.Panicf
log.Exit -> log.Exitln or log.Exit
log.Exitf -> log.Exitf (no change)
This has a slight breakage: since loggers now write only to one
output, existing calls to log.New() need to delete the second argument.
Also, custom loggers with exit or panic properties will need to be
reworked.
All package code updated to new interface.
The test has been reworked somewhat.
The old interface will be removed after the new release.
For now, its elements are marked 'deprecated' in their comments.
Fixes #1184.
R=rsc
CC=golang-dev
https://golang.org/cl/2419042
2010-10-12 20:59:18 +01:00
|
|
|
log.Print("written cert.pem\n")
|
2010-07-02 18:00:18 +01:00
|
|
|
|
2011-05-27 12:06:50 +01:00
|
|
|
keyOut, err := os.OpenFile("key.pem", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
|
2010-07-02 18:00:18 +01:00
|
|
|
if err != nil {
|
log: new interface
New logging interface simplifies and generalizes.
1) Loggers now have only one output.
2) log.Stdout, Stderr, Crash and friends are gone.
Logging is now always to standard error by default.
3) log.Panic* replaces log.Crash*.
4) Exiting and panicking are not part of the logger's state; instead
the functions Exit* and Panic* simply call Exit or panic after
printing.
5) There is now one 'standard logger'. Instead of calling Stderr,
use Print etc. There are now triples, by analogy with fmt:
Print, Println, Printf
What was log.Stderr is now best represented by log.Println,
since there are now separate Print and Println functions
(and methods).
6) New functions SetOutput, SetFlags, and SetPrefix allow global
editing of the standard logger's properties. This is new
functionality. For instance, one can call
log.SetFlags(log.Lshortfile|log.Ltime|log.Lmicroseconds)
to get all logging output to show file name, line number, and
time stamp.
In short, for most purposes
log.Stderr -> log.Println or log.Print
log.Stderrf -> log.Printf
log.Crash -> log.Panicln or log.Panic
log.Crashf -> log.Panicf
log.Exit -> log.Exitln or log.Exit
log.Exitf -> log.Exitf (no change)
This has a slight breakage: since loggers now write only to one
output, existing calls to log.New() need to delete the second argument.
Also, custom loggers with exit or panic properties will need to be
reworked.
All package code updated to new interface.
The test has been reworked somewhat.
The old interface will be removed after the new release.
For now, its elements are marked 'deprecated' in their comments.
Fixes #1184.
R=rsc
CC=golang-dev
https://golang.org/cl/2419042
2010-10-12 20:59:18 +01:00
|
|
|
log.Print("failed to open key.pem for writing:", err)
|
2010-07-02 18:00:18 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
pem.Encode(keyOut, &pem.Block{Type: "RSA PRIVATE KEY", Bytes: x509.MarshalPKCS1PrivateKey(priv)})
|
|
|
|
keyOut.Close()
|
log: new interface
New logging interface simplifies and generalizes.
1) Loggers now have only one output.
2) log.Stdout, Stderr, Crash and friends are gone.
Logging is now always to standard error by default.
3) log.Panic* replaces log.Crash*.
4) Exiting and panicking are not part of the logger's state; instead
the functions Exit* and Panic* simply call Exit or panic after
printing.
5) There is now one 'standard logger'. Instead of calling Stderr,
use Print etc. There are now triples, by analogy with fmt:
Print, Println, Printf
What was log.Stderr is now best represented by log.Println,
since there are now separate Print and Println functions
(and methods).
6) New functions SetOutput, SetFlags, and SetPrefix allow global
editing of the standard logger's properties. This is new
functionality. For instance, one can call
log.SetFlags(log.Lshortfile|log.Ltime|log.Lmicroseconds)
to get all logging output to show file name, line number, and
time stamp.
In short, for most purposes
log.Stderr -> log.Println or log.Print
log.Stderrf -> log.Printf
log.Crash -> log.Panicln or log.Panic
log.Crashf -> log.Panicf
log.Exit -> log.Exitln or log.Exit
log.Exitf -> log.Exitf (no change)
This has a slight breakage: since loggers now write only to one
output, existing calls to log.New() need to delete the second argument.
Also, custom loggers with exit or panic properties will need to be
reworked.
All package code updated to new interface.
The test has been reworked somewhat.
The old interface will be removed after the new release.
For now, its elements are marked 'deprecated' in their comments.
Fixes #1184.
R=rsc
CC=golang-dev
https://golang.org/cl/2419042
2010-10-12 20:59:18 +01:00
|
|
|
log.Print("written key.pem\n")
|
2010-07-02 18:00:18 +01:00
|
|
|
}
|