2010-12-03 12:34:57 +08: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.
|
|
|
|
|
2011-05-20 08:18:15 +08:00
|
|
|
// Package x509 parses X.509-encoded keys and certificates.
|
2010-12-03 12:34:57 +08:00
|
|
|
package x509
|
|
|
|
|
|
|
|
import (
|
|
|
|
"asn1"
|
|
|
|
"big"
|
2011-05-20 08:18:15 +08:00
|
|
|
"bytes"
|
2010-12-03 12:34:57 +08:00
|
|
|
"container/vector"
|
2011-03-17 07:05:44 +08:00
|
|
|
"crypto"
|
2010-12-03 12:34:57 +08:00
|
|
|
"crypto/rsa"
|
|
|
|
"crypto/sha1"
|
|
|
|
"hash"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
// pkcs1PrivateKey is a structure which mirrors the PKCS#1 ASN.1 for an RSA private key.
|
|
|
|
type pkcs1PrivateKey struct {
|
|
|
|
Version int
|
|
|
|
N asn1.RawValue
|
|
|
|
E int
|
|
|
|
D asn1.RawValue
|
|
|
|
P asn1.RawValue
|
|
|
|
Q asn1.RawValue
|
2011-05-20 08:18:15 +08:00
|
|
|
// We ignore these values, if present, because rsa will calculate them.
|
|
|
|
Dp asn1.RawValue "optional"
|
|
|
|
Dq asn1.RawValue "optional"
|
|
|
|
Qinv asn1.RawValue "optional"
|
|
|
|
|
|
|
|
AdditionalPrimes []pkcs1AddtionalRSAPrime "optional"
|
|
|
|
}
|
|
|
|
|
|
|
|
type pkcs1AddtionalRSAPrime struct {
|
|
|
|
Prime asn1.RawValue
|
|
|
|
|
|
|
|
// We ignore these values because rsa will calculate them.
|
|
|
|
Exp asn1.RawValue
|
|
|
|
Coeff asn1.RawValue
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// rawValueIsInteger returns true iff the given ASN.1 RawValue is an INTEGER type.
|
|
|
|
func rawValueIsInteger(raw *asn1.RawValue) bool {
|
|
|
|
return raw.Class == 0 && raw.Tag == 2 && raw.IsCompound == false
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParsePKCS1PrivateKey returns an RSA private key from its ASN.1 PKCS#1 DER encoded form.
|
|
|
|
func ParsePKCS1PrivateKey(der []byte) (key *rsa.PrivateKey, err os.Error) {
|
|
|
|
var priv pkcs1PrivateKey
|
|
|
|
rest, err := asn1.Unmarshal(der, &priv)
|
|
|
|
if len(rest) > 0 {
|
|
|
|
err = asn1.SyntaxError{"trailing data"}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-05-20 08:18:15 +08:00
|
|
|
if priv.Version > 1 {
|
|
|
|
return nil, os.ErrorString("x509: unsupported private key version")
|
|
|
|
}
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
if !rawValueIsInteger(&priv.N) ||
|
|
|
|
!rawValueIsInteger(&priv.D) ||
|
|
|
|
!rawValueIsInteger(&priv.P) ||
|
|
|
|
!rawValueIsInteger(&priv.Q) {
|
|
|
|
err = asn1.StructuralError{"tags don't match"}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-04-08 01:09:10 +08:00
|
|
|
key = new(rsa.PrivateKey)
|
|
|
|
key.PublicKey = rsa.PublicKey{
|
|
|
|
E: priv.E,
|
|
|
|
N: new(big.Int).SetBytes(priv.N.Bytes),
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
|
|
|
|
2011-04-08 01:09:10 +08:00
|
|
|
key.D = new(big.Int).SetBytes(priv.D.Bytes)
|
2011-05-20 08:18:15 +08:00
|
|
|
key.Primes = make([]*big.Int, 2+len(priv.AdditionalPrimes))
|
|
|
|
key.Primes[0] = new(big.Int).SetBytes(priv.P.Bytes)
|
|
|
|
key.Primes[1] = new(big.Int).SetBytes(priv.Q.Bytes)
|
|
|
|
for i, a := range priv.AdditionalPrimes {
|
|
|
|
if !rawValueIsInteger(&a.Prime) {
|
|
|
|
return nil, asn1.StructuralError{"tags don't match"}
|
|
|
|
}
|
|
|
|
key.Primes[i+2] = new(big.Int).SetBytes(a.Prime.Bytes)
|
|
|
|
// We ignore the other two values because rsa will calculate
|
|
|
|
// them as needed.
|
|
|
|
}
|
2011-04-08 01:09:10 +08:00
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
err = key.Validate()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2011-05-20 08:18:15 +08:00
|
|
|
key.Precompute()
|
2011-04-08 01:09:10 +08:00
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2011-05-20 08:18:15 +08:00
|
|
|
// rawValueForBig returns an asn1.RawValue which represents the given integer.
|
|
|
|
func rawValueForBig(n *big.Int) asn1.RawValue {
|
|
|
|
b := n.Bytes()
|
|
|
|
if n.Sign() >= 0 && len(b) > 0 && b[0]&0x80 != 0 {
|
|
|
|
// This positive number would be interpreted as a negative
|
|
|
|
// number in ASN.1 because the MSB is set.
|
|
|
|
padded := make([]byte, len(b)+1)
|
|
|
|
copy(padded[1:], b)
|
|
|
|
b = padded
|
|
|
|
}
|
|
|
|
return asn1.RawValue{Tag: 2, Bytes: b}
|
|
|
|
}
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
// MarshalPKCS1PrivateKey converts a private key to ASN.1 DER encoded form.
|
|
|
|
func MarshalPKCS1PrivateKey(key *rsa.PrivateKey) []byte {
|
2011-05-20 08:18:15 +08:00
|
|
|
key.Precompute()
|
|
|
|
|
|
|
|
version := 0
|
|
|
|
if len(key.Primes) > 2 {
|
|
|
|
version = 1
|
|
|
|
}
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
priv := pkcs1PrivateKey{
|
2011-05-20 08:18:15 +08:00
|
|
|
Version: version,
|
|
|
|
N: rawValueForBig(key.N),
|
2010-12-03 12:34:57 +08:00
|
|
|
E: key.PublicKey.E,
|
2011-05-20 08:18:15 +08:00
|
|
|
D: rawValueForBig(key.D),
|
|
|
|
P: rawValueForBig(key.Primes[0]),
|
|
|
|
Q: rawValueForBig(key.Primes[1]),
|
|
|
|
Dp: rawValueForBig(key.Precomputed.Dp),
|
|
|
|
Dq: rawValueForBig(key.Precomputed.Dq),
|
|
|
|
Qinv: rawValueForBig(key.Precomputed.Qinv),
|
|
|
|
}
|
|
|
|
|
|
|
|
priv.AdditionalPrimes = make([]pkcs1AddtionalRSAPrime, len(key.Precomputed.CRTValues))
|
|
|
|
for i, values := range key.Precomputed.CRTValues {
|
|
|
|
priv.AdditionalPrimes[i].Prime = rawValueForBig(key.Primes[2+i])
|
|
|
|
priv.AdditionalPrimes[i].Exp = rawValueForBig(values.Exp)
|
|
|
|
priv.AdditionalPrimes[i].Coeff = rawValueForBig(values.Coeff)
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
b, _ := asn1.Marshal(priv)
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
|
|
|
// These structures reflect the ASN.1 structure of X.509 certificates.:
|
|
|
|
|
|
|
|
type certificate struct {
|
2011-05-20 08:18:15 +08:00
|
|
|
Raw asn1.RawContent
|
2010-12-03 12:34:57 +08:00
|
|
|
TBSCertificate tbsCertificate
|
|
|
|
SignatureAlgorithm algorithmIdentifier
|
|
|
|
SignatureValue asn1.BitString
|
|
|
|
}
|
|
|
|
|
|
|
|
type tbsCertificate struct {
|
|
|
|
Raw asn1.RawContent
|
|
|
|
Version int "optional,explicit,default:1,tag:0"
|
|
|
|
SerialNumber asn1.RawValue
|
|
|
|
SignatureAlgorithm algorithmIdentifier
|
|
|
|
Issuer rdnSequence
|
|
|
|
Validity validity
|
|
|
|
Subject rdnSequence
|
|
|
|
PublicKey publicKeyInfo
|
|
|
|
UniqueId asn1.BitString "optional,tag:1"
|
|
|
|
SubjectUniqueId asn1.BitString "optional,tag:2"
|
|
|
|
Extensions []extension "optional,explicit,tag:3"
|
|
|
|
}
|
|
|
|
|
|
|
|
type algorithmIdentifier struct {
|
|
|
|
Algorithm asn1.ObjectIdentifier
|
|
|
|
}
|
|
|
|
|
|
|
|
type rdnSequence []relativeDistinguishedNameSET
|
|
|
|
|
|
|
|
type relativeDistinguishedNameSET []attributeTypeAndValue
|
|
|
|
|
|
|
|
type attributeTypeAndValue struct {
|
|
|
|
Type asn1.ObjectIdentifier
|
|
|
|
Value interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type validity struct {
|
|
|
|
NotBefore, NotAfter *time.Time
|
|
|
|
}
|
|
|
|
|
|
|
|
type publicKeyInfo struct {
|
2011-05-20 08:18:15 +08:00
|
|
|
Raw asn1.RawContent
|
2010-12-03 12:34:57 +08:00
|
|
|
Algorithm algorithmIdentifier
|
|
|
|
PublicKey asn1.BitString
|
|
|
|
}
|
|
|
|
|
|
|
|
type extension struct {
|
|
|
|
Id asn1.ObjectIdentifier
|
|
|
|
Critical bool "optional"
|
|
|
|
Value []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// RFC 5280, 4.2.1.1
|
|
|
|
type authKeyId struct {
|
|
|
|
Id []byte "optional,tag:0"
|
|
|
|
}
|
|
|
|
|
|
|
|
type SignatureAlgorithm int
|
|
|
|
|
|
|
|
const (
|
|
|
|
UnknownSignatureAlgorithm SignatureAlgorithm = iota
|
|
|
|
MD2WithRSA
|
|
|
|
MD5WithRSA
|
|
|
|
SHA1WithRSA
|
|
|
|
SHA256WithRSA
|
|
|
|
SHA384WithRSA
|
|
|
|
SHA512WithRSA
|
|
|
|
)
|
|
|
|
|
|
|
|
type PublicKeyAlgorithm int
|
|
|
|
|
|
|
|
const (
|
|
|
|
UnknownPublicKeyAlgorithm PublicKeyAlgorithm = iota
|
|
|
|
RSA
|
|
|
|
)
|
|
|
|
|
|
|
|
// Name represents an X.509 distinguished name. This only includes the common
|
|
|
|
// elements of a DN. Additional elements in the name are ignored.
|
|
|
|
type Name struct {
|
|
|
|
Country, Organization, OrganizationalUnit []string
|
|
|
|
Locality, Province []string
|
|
|
|
StreetAddress, PostalCode []string
|
|
|
|
SerialNumber, CommonName string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *Name) fillFromRDNSequence(rdns *rdnSequence) {
|
|
|
|
for _, rdn := range *rdns {
|
|
|
|
if len(rdn) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
atv := rdn[0]
|
|
|
|
value, ok := atv.Value.(string)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
t := atv.Type
|
|
|
|
if len(t) == 4 && t[0] == 2 && t[1] == 5 && t[2] == 4 {
|
|
|
|
switch t[3] {
|
|
|
|
case 3:
|
|
|
|
n.CommonName = value
|
|
|
|
case 5:
|
|
|
|
n.SerialNumber = value
|
|
|
|
case 6:
|
|
|
|
n.Country = append(n.Country, value)
|
|
|
|
case 7:
|
|
|
|
n.Locality = append(n.Locality, value)
|
|
|
|
case 8:
|
|
|
|
n.Province = append(n.Province, value)
|
|
|
|
case 9:
|
|
|
|
n.StreetAddress = append(n.StreetAddress, value)
|
|
|
|
case 10:
|
|
|
|
n.Organization = append(n.Organization, value)
|
|
|
|
case 11:
|
|
|
|
n.OrganizationalUnit = append(n.OrganizationalUnit, value)
|
|
|
|
case 17:
|
|
|
|
n.PostalCode = append(n.PostalCode, value)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
oidCountry = []int{2, 5, 4, 6}
|
|
|
|
oidOrganization = []int{2, 5, 4, 10}
|
|
|
|
oidOrganizationalUnit = []int{2, 5, 4, 11}
|
|
|
|
oidCommonName = []int{2, 5, 4, 3}
|
|
|
|
oidSerialNumber = []int{2, 5, 4, 5}
|
|
|
|
oidLocatity = []int{2, 5, 4, 7}
|
|
|
|
oidProvince = []int{2, 5, 4, 8}
|
|
|
|
oidStreetAddress = []int{2, 5, 4, 9}
|
|
|
|
oidPostalCode = []int{2, 5, 4, 17}
|
|
|
|
)
|
|
|
|
|
2011-01-22 02:19:03 +08:00
|
|
|
// appendRDNs appends a relativeDistinguishedNameSET to the given rdnSequence
|
|
|
|
// and returns the new value. The relativeDistinguishedNameSET contains an
|
|
|
|
// attributeTypeAndValue for each of the given values. See RFC 5280, A.1, and
|
|
|
|
// search for AttributeTypeAndValue.
|
|
|
|
func appendRDNs(in rdnSequence, values []string, oid asn1.ObjectIdentifier) rdnSequence {
|
|
|
|
if len(values) == 0 {
|
|
|
|
return in
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
2011-01-22 02:19:03 +08:00
|
|
|
|
|
|
|
s := make([]attributeTypeAndValue, len(values))
|
|
|
|
for i, value := range values {
|
|
|
|
s[i].Type = oid
|
|
|
|
s[i].Value = value
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
2011-01-22 02:19:03 +08:00
|
|
|
|
|
|
|
return append(in, s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n Name) toRDNSequence() (ret rdnSequence) {
|
|
|
|
ret = appendRDNs(ret, n.Country, oidCountry)
|
|
|
|
ret = appendRDNs(ret, n.Organization, oidOrganization)
|
|
|
|
ret = appendRDNs(ret, n.OrganizationalUnit, oidOrganizationalUnit)
|
|
|
|
ret = appendRDNs(ret, n.Locality, oidLocatity)
|
|
|
|
ret = appendRDNs(ret, n.Province, oidProvince)
|
|
|
|
ret = appendRDNs(ret, n.StreetAddress, oidStreetAddress)
|
|
|
|
ret = appendRDNs(ret, n.PostalCode, oidPostalCode)
|
2010-12-03 12:34:57 +08:00
|
|
|
if len(n.CommonName) > 0 {
|
2011-01-22 02:19:03 +08:00
|
|
|
ret = appendRDNs(ret, []string{n.CommonName}, oidCommonName)
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
|
|
|
if len(n.SerialNumber) > 0 {
|
2011-01-22 02:19:03 +08:00
|
|
|
ret = appendRDNs(ret, []string{n.SerialNumber}, oidSerialNumber)
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
|
|
|
|
2011-01-22 02:19:03 +08:00
|
|
|
return ret
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func getSignatureAlgorithmFromOID(oid []int) SignatureAlgorithm {
|
|
|
|
if len(oid) == 7 && oid[0] == 1 && oid[1] == 2 && oid[2] == 840 &&
|
|
|
|
oid[3] == 113549 && oid[4] == 1 && oid[5] == 1 {
|
|
|
|
switch oid[6] {
|
|
|
|
case 2:
|
|
|
|
return MD2WithRSA
|
|
|
|
case 4:
|
|
|
|
return MD5WithRSA
|
|
|
|
case 5:
|
|
|
|
return SHA1WithRSA
|
|
|
|
case 11:
|
|
|
|
return SHA256WithRSA
|
|
|
|
case 12:
|
|
|
|
return SHA384WithRSA
|
|
|
|
case 13:
|
|
|
|
return SHA512WithRSA
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UnknownSignatureAlgorithm
|
|
|
|
}
|
|
|
|
|
|
|
|
func getPublicKeyAlgorithmFromOID(oid []int) PublicKeyAlgorithm {
|
|
|
|
if len(oid) == 7 && oid[0] == 1 && oid[1] == 2 && oid[2] == 840 &&
|
|
|
|
oid[3] == 113549 && oid[4] == 1 && oid[5] == 1 {
|
|
|
|
switch oid[6] {
|
|
|
|
case 1:
|
|
|
|
return RSA
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return UnknownPublicKeyAlgorithm
|
|
|
|
}
|
|
|
|
|
|
|
|
// KeyUsage represents the set of actions that are valid for a given key. It's
|
|
|
|
// a bitmap of the KeyUsage* constants.
|
|
|
|
type KeyUsage int
|
|
|
|
|
|
|
|
const (
|
|
|
|
KeyUsageDigitalSignature KeyUsage = 1 << iota
|
|
|
|
KeyUsageContentCommitment
|
|
|
|
KeyUsageKeyEncipherment
|
|
|
|
KeyUsageDataEncipherment
|
|
|
|
KeyUsageKeyAgreement
|
|
|
|
KeyUsageCertSign
|
|
|
|
KeyUsageCRLSign
|
|
|
|
KeyUsageEncipherOnly
|
|
|
|
KeyUsageDecipherOnly
|
|
|
|
)
|
|
|
|
|
2011-03-30 23:33:16 +08:00
|
|
|
// RFC 5280, 4.2.1.12 Extended Key Usage
|
|
|
|
//
|
|
|
|
// anyExtendedKeyUsage OBJECT IDENTIFIER ::= { id-ce-extKeyUsage 0 }
|
|
|
|
//
|
|
|
|
// id-kp OBJECT IDENTIFIER ::= { id-pkix 3 }
|
|
|
|
//
|
|
|
|
// id-kp-serverAuth OBJECT IDENTIFIER ::= { id-kp 1 }
|
|
|
|
// id-kp-clientAuth OBJECT IDENTIFIER ::= { id-kp 2 }
|
|
|
|
// id-kp-codeSigning OBJECT IDENTIFIER ::= { id-kp 3 }
|
|
|
|
// id-kp-emailProtection OBJECT IDENTIFIER ::= { id-kp 4 }
|
|
|
|
// id-kp-timeStamping OBJECT IDENTIFIER ::= { id-kp 8 }
|
|
|
|
// id-kp-OCSPSigning OBJECT IDENTIFIER ::= { id-kp 9 }
|
|
|
|
var (
|
|
|
|
oidExtKeyUsageAny = asn1.ObjectIdentifier{2, 5, 29, 37, 0}
|
|
|
|
oidExtKeyUsageServerAuth = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 3, 1}
|
|
|
|
oidExtKeyUsageClientAuth = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 3, 2}
|
|
|
|
oidExtKeyUsageCodeSigning = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 3, 3}
|
|
|
|
oidExtKeyUsageEmailProtection = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 3, 4}
|
|
|
|
oidExtKeyUsageTimeStamping = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 3, 8}
|
|
|
|
oidExtKeyUsageOCSPSigning = asn1.ObjectIdentifier{1, 3, 6, 1, 5, 5, 7, 3, 9}
|
|
|
|
)
|
|
|
|
|
|
|
|
// ExtKeyUsage represents an extended set of actions that are valid for a given key.
|
|
|
|
// Each of the ExtKeyUsage* constants define a unique action.
|
|
|
|
type ExtKeyUsage int
|
|
|
|
|
|
|
|
const (
|
|
|
|
ExtKeyUsageAny ExtKeyUsage = iota
|
|
|
|
ExtKeyUsageServerAuth
|
|
|
|
ExtKeyUsageClientAuth
|
|
|
|
ExtKeyUsageCodeSigning
|
|
|
|
ExtKeyUsageEmailProtection
|
|
|
|
ExtKeyUsageTimeStamping
|
|
|
|
ExtKeyUsageOCSPSigning
|
|
|
|
)
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
// A Certificate represents an X.509 certificate.
|
|
|
|
type Certificate struct {
|
2011-05-20 08:18:15 +08:00
|
|
|
Raw []byte // Complete ASN.1 DER content (certificate, signature algorithm and signature).
|
|
|
|
RawTBSCertificate []byte // Certificate part of raw ASN.1 DER content.
|
|
|
|
RawSubjectPublicKeyInfo []byte // DER encoded SubjectPublicKeyInfo.
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
Signature []byte
|
|
|
|
SignatureAlgorithm SignatureAlgorithm
|
|
|
|
|
|
|
|
PublicKeyAlgorithm PublicKeyAlgorithm
|
|
|
|
PublicKey interface{}
|
|
|
|
|
|
|
|
Version int
|
|
|
|
SerialNumber []byte
|
|
|
|
Issuer Name
|
|
|
|
Subject Name
|
|
|
|
NotBefore, NotAfter *time.Time // Validity bounds.
|
|
|
|
KeyUsage KeyUsage
|
|
|
|
|
2011-03-30 23:33:16 +08:00
|
|
|
ExtKeyUsage []ExtKeyUsage // Sequence of extended key usages.
|
|
|
|
UnknownExtKeyUsage []asn1.ObjectIdentifier // Encountered extended key usages unknown to this package.
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
BasicConstraintsValid bool // if true then the next two fields are valid.
|
|
|
|
IsCA bool
|
|
|
|
MaxPathLen int
|
|
|
|
|
|
|
|
SubjectKeyId []byte
|
|
|
|
AuthorityKeyId []byte
|
|
|
|
|
|
|
|
// Subject Alternate Name values
|
|
|
|
DNSNames []string
|
|
|
|
EmailAddresses []string
|
2011-01-22 02:19:03 +08:00
|
|
|
|
2011-03-17 07:05:44 +08:00
|
|
|
// Name constraints
|
|
|
|
PermittedDNSDomainsCritical bool // if true then the name constraints are marked critical.
|
|
|
|
PermittedDNSDomains []string
|
|
|
|
|
2011-01-22 02:19:03 +08:00
|
|
|
PolicyIdentifiers []asn1.ObjectIdentifier
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// UnsupportedAlgorithmError results from attempting to perform an operation
|
|
|
|
// that involves algorithms that are not currently implemented.
|
|
|
|
type UnsupportedAlgorithmError struct{}
|
|
|
|
|
|
|
|
func (UnsupportedAlgorithmError) String() string {
|
|
|
|
return "cannot verify signature: algorithm unimplemented"
|
|
|
|
}
|
|
|
|
|
|
|
|
// ConstraintViolationError results when a requested usage is not permitted by
|
|
|
|
// a certificate. For example: checking a signature when the public key isn't a
|
|
|
|
// certificate signing key.
|
|
|
|
type ConstraintViolationError struct{}
|
|
|
|
|
|
|
|
func (ConstraintViolationError) String() string {
|
|
|
|
return "invalid signature: parent certificate cannot sign this kind of certificate"
|
|
|
|
}
|
|
|
|
|
2011-05-20 08:18:15 +08:00
|
|
|
func (c *Certificate) Equal(other *Certificate) bool {
|
|
|
|
return bytes.Equal(c.Raw, other.Raw)
|
|
|
|
}
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
// CheckSignatureFrom verifies that the signature on c is a valid signature
|
|
|
|
// from parent.
|
|
|
|
func (c *Certificate) CheckSignatureFrom(parent *Certificate) (err os.Error) {
|
|
|
|
// RFC 5280, 4.2.1.9:
|
|
|
|
// "If the basic constraints extension is not present in a version 3
|
|
|
|
// certificate, or the extension is present but the cA boolean is not
|
|
|
|
// asserted, then the certified public key MUST NOT be used to verify
|
|
|
|
// certificate signatures."
|
|
|
|
if parent.Version == 3 && !parent.BasicConstraintsValid ||
|
|
|
|
parent.BasicConstraintsValid && !parent.IsCA {
|
|
|
|
return ConstraintViolationError{}
|
|
|
|
}
|
|
|
|
|
|
|
|
if parent.KeyUsage != 0 && parent.KeyUsage&KeyUsageCertSign == 0 {
|
|
|
|
return ConstraintViolationError{}
|
|
|
|
}
|
|
|
|
|
|
|
|
if parent.PublicKeyAlgorithm == UnknownPublicKeyAlgorithm {
|
|
|
|
return UnsupportedAlgorithmError{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(agl): don't ignore the path length constraint.
|
|
|
|
|
|
|
|
var h hash.Hash
|
2011-03-17 07:05:44 +08:00
|
|
|
var hashType crypto.Hash
|
2010-12-03 12:34:57 +08:00
|
|
|
|
|
|
|
switch c.SignatureAlgorithm {
|
|
|
|
case SHA1WithRSA:
|
|
|
|
h = sha1.New()
|
2011-03-17 07:05:44 +08:00
|
|
|
hashType = crypto.SHA1
|
2010-12-03 12:34:57 +08:00
|
|
|
default:
|
|
|
|
return UnsupportedAlgorithmError{}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub, ok := parent.PublicKey.(*rsa.PublicKey)
|
|
|
|
if !ok {
|
|
|
|
return UnsupportedAlgorithmError{}
|
|
|
|
}
|
|
|
|
|
2011-05-20 08:18:15 +08:00
|
|
|
h.Write(c.RawTBSCertificate)
|
2010-12-03 12:34:57 +08:00
|
|
|
digest := h.Sum()
|
|
|
|
|
|
|
|
return rsa.VerifyPKCS1v15(pub, hashType, digest, c.Signature)
|
|
|
|
}
|
|
|
|
|
|
|
|
type UnhandledCriticalExtension struct{}
|
|
|
|
|
|
|
|
func (h UnhandledCriticalExtension) String() string {
|
|
|
|
return "unhandled critical extension"
|
|
|
|
}
|
|
|
|
|
|
|
|
type basicConstraints struct {
|
|
|
|
IsCA bool "optional"
|
|
|
|
MaxPathLen int "optional"
|
|
|
|
}
|
|
|
|
|
|
|
|
type rsaPublicKey struct {
|
|
|
|
N asn1.RawValue
|
|
|
|
E int
|
|
|
|
}
|
|
|
|
|
2011-01-22 02:19:03 +08:00
|
|
|
// RFC 5280 4.2.1.4
|
|
|
|
type policyInformation struct {
|
|
|
|
Policy asn1.ObjectIdentifier
|
|
|
|
// policyQualifiers omitted
|
|
|
|
}
|
|
|
|
|
2011-03-17 07:05:44 +08:00
|
|
|
// RFC 5280, 4.2.1.10
|
|
|
|
type nameConstraints struct {
|
|
|
|
Permitted []generalSubtree "optional,tag:0"
|
|
|
|
Excluded []generalSubtree "optional,tag:1"
|
|
|
|
}
|
|
|
|
|
|
|
|
type generalSubtree struct {
|
|
|
|
Name string "tag:2,optional,ia5"
|
|
|
|
Min int "optional,tag:0"
|
|
|
|
Max int "optional,tag:1"
|
|
|
|
}
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
func parsePublicKey(algo PublicKeyAlgorithm, asn1Data []byte) (interface{}, os.Error) {
|
|
|
|
switch algo {
|
|
|
|
case RSA:
|
|
|
|
p := new(rsaPublicKey)
|
|
|
|
_, err := asn1.Unmarshal(asn1Data, p)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !rawValueIsInteger(&p.N) {
|
|
|
|
return nil, asn1.StructuralError{"tags don't match"}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub := &rsa.PublicKey{
|
|
|
|
E: p.E,
|
|
|
|
N: new(big.Int).SetBytes(p.N.Bytes),
|
|
|
|
}
|
|
|
|
return pub, nil
|
|
|
|
default:
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
panic("unreachable")
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseCertificate(in *certificate) (*Certificate, os.Error) {
|
|
|
|
out := new(Certificate)
|
2011-05-20 08:18:15 +08:00
|
|
|
out.Raw = in.Raw
|
|
|
|
out.RawTBSCertificate = in.TBSCertificate.Raw
|
|
|
|
out.RawSubjectPublicKeyInfo = in.TBSCertificate.PublicKey.Raw
|
2010-12-03 12:34:57 +08:00
|
|
|
|
|
|
|
out.Signature = in.SignatureValue.RightAlign()
|
|
|
|
out.SignatureAlgorithm =
|
|
|
|
getSignatureAlgorithmFromOID(in.TBSCertificate.SignatureAlgorithm.Algorithm)
|
|
|
|
|
|
|
|
out.PublicKeyAlgorithm =
|
|
|
|
getPublicKeyAlgorithmFromOID(in.TBSCertificate.PublicKey.Algorithm.Algorithm)
|
|
|
|
var err os.Error
|
|
|
|
out.PublicKey, err = parsePublicKey(out.PublicKeyAlgorithm, in.TBSCertificate.PublicKey.PublicKey.RightAlign())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2011-01-22 02:19:03 +08:00
|
|
|
out.Version = in.TBSCertificate.Version + 1
|
2010-12-03 12:34:57 +08:00
|
|
|
out.SerialNumber = in.TBSCertificate.SerialNumber.Bytes
|
|
|
|
out.Issuer.fillFromRDNSequence(&in.TBSCertificate.Issuer)
|
|
|
|
out.Subject.fillFromRDNSequence(&in.TBSCertificate.Subject)
|
|
|
|
out.NotBefore = in.TBSCertificate.Validity.NotBefore
|
|
|
|
out.NotAfter = in.TBSCertificate.Validity.NotAfter
|
|
|
|
|
|
|
|
for _, e := range in.TBSCertificate.Extensions {
|
|
|
|
if len(e.Id) == 4 && e.Id[0] == 2 && e.Id[1] == 5 && e.Id[2] == 29 {
|
|
|
|
switch e.Id[3] {
|
|
|
|
case 15:
|
|
|
|
// RFC 5280, 4.2.1.3
|
|
|
|
var usageBits asn1.BitString
|
|
|
|
_, err := asn1.Unmarshal(e.Value, &usageBits)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
var usage int
|
|
|
|
for i := 0; i < 9; i++ {
|
|
|
|
if usageBits.At(i) != 0 {
|
|
|
|
usage |= 1 << uint(i)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out.KeyUsage = KeyUsage(usage)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
case 19:
|
|
|
|
// RFC 5280, 4.2.1.9
|
|
|
|
var constriants basicConstraints
|
|
|
|
_, err := asn1.Unmarshal(e.Value, &constriants)
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
out.BasicConstraintsValid = true
|
|
|
|
out.IsCA = constriants.IsCA
|
|
|
|
out.MaxPathLen = constriants.MaxPathLen
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
case 17:
|
|
|
|
// RFC 5280, 4.2.1.6
|
|
|
|
|
|
|
|
// SubjectAltName ::= GeneralNames
|
|
|
|
//
|
|
|
|
// GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName
|
|
|
|
//
|
|
|
|
// GeneralName ::= CHOICE {
|
|
|
|
// otherName [0] OtherName,
|
|
|
|
// rfc822Name [1] IA5String,
|
|
|
|
// dNSName [2] IA5String,
|
|
|
|
// x400Address [3] ORAddress,
|
|
|
|
// directoryName [4] Name,
|
|
|
|
// ediPartyName [5] EDIPartyName,
|
|
|
|
// uniformResourceIdentifier [6] IA5String,
|
|
|
|
// iPAddress [7] OCTET STRING,
|
|
|
|
// registeredID [8] OBJECT IDENTIFIER }
|
|
|
|
var seq asn1.RawValue
|
|
|
|
_, err := asn1.Unmarshal(e.Value, &seq)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if !seq.IsCompound || seq.Tag != 16 || seq.Class != 0 {
|
|
|
|
return nil, asn1.StructuralError{"bad SAN sequence"}
|
|
|
|
}
|
|
|
|
|
|
|
|
parsedName := false
|
|
|
|
|
|
|
|
rest := seq.Bytes
|
|
|
|
for len(rest) > 0 {
|
|
|
|
var v asn1.RawValue
|
|
|
|
rest, err = asn1.Unmarshal(rest, &v)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch v.Tag {
|
|
|
|
case 1:
|
|
|
|
out.EmailAddresses = append(out.EmailAddresses, string(v.Bytes))
|
|
|
|
parsedName = true
|
|
|
|
case 2:
|
|
|
|
out.DNSNames = append(out.DNSNames, string(v.Bytes))
|
|
|
|
parsedName = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if parsedName {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// If we didn't parse any of the names then we
|
|
|
|
// fall through to the critical check below.
|
|
|
|
|
2011-03-17 07:05:44 +08:00
|
|
|
case 30:
|
|
|
|
// RFC 5280, 4.2.1.10
|
|
|
|
|
|
|
|
// NameConstraints ::= SEQUENCE {
|
|
|
|
// permittedSubtrees [0] GeneralSubtrees OPTIONAL,
|
|
|
|
// excludedSubtrees [1] GeneralSubtrees OPTIONAL }
|
|
|
|
//
|
|
|
|
// GeneralSubtrees ::= SEQUENCE SIZE (1..MAX) OF GeneralSubtree
|
|
|
|
//
|
|
|
|
// GeneralSubtree ::= SEQUENCE {
|
|
|
|
// base GeneralName,
|
|
|
|
// minimum [0] BaseDistance DEFAULT 0,
|
|
|
|
// maximum [1] BaseDistance OPTIONAL }
|
|
|
|
//
|
|
|
|
// BaseDistance ::= INTEGER (0..MAX)
|
|
|
|
|
|
|
|
var constraints nameConstraints
|
|
|
|
_, err := asn1.Unmarshal(e.Value, &constraints)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(constraints.Excluded) > 0 && e.Critical {
|
|
|
|
return out, UnhandledCriticalExtension{}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, subtree := range constraints.Permitted {
|
|
|
|
if subtree.Min > 0 || subtree.Max > 0 || len(subtree.Name) == 0 {
|
|
|
|
if e.Critical {
|
|
|
|
return out, UnhandledCriticalExtension{}
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
out.PermittedDNSDomains = append(out.PermittedDNSDomains, subtree.Name)
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
case 35:
|
|
|
|
// RFC 5280, 4.2.1.1
|
|
|
|
var a authKeyId
|
|
|
|
_, err = asn1.Unmarshal(e.Value, &a)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
out.AuthorityKeyId = a.Id
|
|
|
|
continue
|
|
|
|
|
2011-03-30 23:33:16 +08:00
|
|
|
case 37:
|
|
|
|
// RFC 5280, 4.2.1.12. Extended Key Usage
|
|
|
|
|
|
|
|
// id-ce-extKeyUsage OBJECT IDENTIFIER ::= { id-ce 37 }
|
|
|
|
//
|
|
|
|
// ExtKeyUsageSyntax ::= SEQUENCE SIZE (1..MAX) OF KeyPurposeId
|
|
|
|
//
|
|
|
|
// KeyPurposeId ::= OBJECT IDENTIFIER
|
|
|
|
|
|
|
|
var keyUsage []asn1.ObjectIdentifier
|
|
|
|
_, err = asn1.Unmarshal(e.Value, &keyUsage)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, u := range keyUsage {
|
|
|
|
switch {
|
|
|
|
case u.Equal(oidExtKeyUsageAny):
|
|
|
|
out.ExtKeyUsage = append(out.ExtKeyUsage, ExtKeyUsageAny)
|
|
|
|
case u.Equal(oidExtKeyUsageServerAuth):
|
|
|
|
out.ExtKeyUsage = append(out.ExtKeyUsage, ExtKeyUsageServerAuth)
|
|
|
|
case u.Equal(oidExtKeyUsageClientAuth):
|
|
|
|
out.ExtKeyUsage = append(out.ExtKeyUsage, ExtKeyUsageClientAuth)
|
|
|
|
case u.Equal(oidExtKeyUsageCodeSigning):
|
|
|
|
out.ExtKeyUsage = append(out.ExtKeyUsage, ExtKeyUsageCodeSigning)
|
|
|
|
case u.Equal(oidExtKeyUsageEmailProtection):
|
|
|
|
out.ExtKeyUsage = append(out.ExtKeyUsage, ExtKeyUsageEmailProtection)
|
|
|
|
case u.Equal(oidExtKeyUsageTimeStamping):
|
|
|
|
out.ExtKeyUsage = append(out.ExtKeyUsage, ExtKeyUsageTimeStamping)
|
|
|
|
case u.Equal(oidExtKeyUsageOCSPSigning):
|
|
|
|
out.ExtKeyUsage = append(out.ExtKeyUsage, ExtKeyUsageOCSPSigning)
|
|
|
|
default:
|
|
|
|
out.UnknownExtKeyUsage = append(out.UnknownExtKeyUsage, u)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
case 14:
|
|
|
|
// RFC 5280, 4.2.1.2
|
|
|
|
var keyid []byte
|
|
|
|
_, err = asn1.Unmarshal(e.Value, &keyid)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
out.SubjectKeyId = keyid
|
|
|
|
continue
|
2011-01-22 02:19:03 +08:00
|
|
|
|
|
|
|
case 32:
|
|
|
|
// RFC 5280 4.2.1.4: Certificate Policies
|
|
|
|
var policies []policyInformation
|
|
|
|
if _, err = asn1.Unmarshal(e.Value, &policies); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
out.PolicyIdentifiers = make([]asn1.ObjectIdentifier, len(policies))
|
|
|
|
for i, policy := range policies {
|
|
|
|
out.PolicyIdentifiers[i] = policy.Policy
|
|
|
|
}
|
2010-12-03 12:34:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if e.Critical {
|
|
|
|
return out, UnhandledCriticalExtension{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseCertificate parses a single certificate from the given ASN.1 DER data.
|
|
|
|
func ParseCertificate(asn1Data []byte) (*Certificate, os.Error) {
|
|
|
|
var cert certificate
|
|
|
|
rest, err := asn1.Unmarshal(asn1Data, &cert)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if len(rest) > 0 {
|
|
|
|
return nil, asn1.SyntaxError{"trailing data"}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parseCertificate(&cert)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParseCertificates parses one or more certificates from the given ASN.1 DER
|
|
|
|
// data. The certificates must be concatenated with no intermediate padding.
|
|
|
|
func ParseCertificates(asn1Data []byte) ([]*Certificate, os.Error) {
|
|
|
|
v := new(vector.Vector)
|
|
|
|
|
|
|
|
for len(asn1Data) > 0 {
|
|
|
|
cert := new(certificate)
|
|
|
|
var err os.Error
|
|
|
|
asn1Data, err = asn1.Unmarshal(asn1Data, cert)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
v.Push(cert)
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := make([]*Certificate, v.Len())
|
|
|
|
for i := 0; i < v.Len(); i++ {
|
|
|
|
cert, err := parseCertificate(v.At(i).(*certificate))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
ret[i] = cert
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func reverseBitsInAByte(in byte) byte {
|
|
|
|
b1 := in>>4 | in<<4
|
|
|
|
b2 := b1>>2&0x33 | b1<<2&0xcc
|
|
|
|
b3 := b2>>1&0x55 | b2<<1&0xaa
|
|
|
|
return b3
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2011-01-22 02:19:03 +08:00
|
|
|
oidExtensionSubjectKeyId = []int{2, 5, 29, 14}
|
|
|
|
oidExtensionKeyUsage = []int{2, 5, 29, 15}
|
|
|
|
oidExtensionAuthorityKeyId = []int{2, 5, 29, 35}
|
|
|
|
oidExtensionBasicConstraints = []int{2, 5, 29, 19}
|
|
|
|
oidExtensionSubjectAltName = []int{2, 5, 29, 17}
|
|
|
|
oidExtensionCertificatePolicies = []int{2, 5, 29, 32}
|
2011-03-17 07:05:44 +08:00
|
|
|
oidExtensionNameConstraints = []int{2, 5, 29, 30}
|
2010-12-03 12:34:57 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func buildExtensions(template *Certificate) (ret []extension, err os.Error) {
|
2011-03-17 07:05:44 +08:00
|
|
|
ret = make([]extension, 7 /* maximum number of elements. */ )
|
2010-12-03 12:34:57 +08:00
|
|
|
n := 0
|
|
|
|
|
|
|
|
if template.KeyUsage != 0 {
|
|
|
|
ret[n].Id = oidExtensionKeyUsage
|
|
|
|
ret[n].Critical = true
|
|
|
|
|
|
|
|
var a [2]byte
|
|
|
|
a[0] = reverseBitsInAByte(byte(template.KeyUsage))
|
|
|
|
a[1] = reverseBitsInAByte(byte(template.KeyUsage >> 8))
|
|
|
|
|
|
|
|
l := 1
|
|
|
|
if a[1] != 0 {
|
|
|
|
l = 2
|
|
|
|
}
|
|
|
|
|
|
|
|
ret[n].Value, err = asn1.Marshal(asn1.BitString{Bytes: a[0:l], BitLength: l * 8})
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
|
|
|
|
if template.BasicConstraintsValid {
|
|
|
|
ret[n].Id = oidExtensionBasicConstraints
|
|
|
|
ret[n].Value, err = asn1.Marshal(basicConstraints{template.IsCA, template.MaxPathLen})
|
|
|
|
ret[n].Critical = true
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(template.SubjectKeyId) > 0 {
|
|
|
|
ret[n].Id = oidExtensionSubjectKeyId
|
|
|
|
ret[n].Value, err = asn1.Marshal(template.SubjectKeyId)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(template.AuthorityKeyId) > 0 {
|
|
|
|
ret[n].Id = oidExtensionAuthorityKeyId
|
|
|
|
ret[n].Value, err = asn1.Marshal(authKeyId{template.AuthorityKeyId})
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(template.DNSNames) > 0 {
|
|
|
|
ret[n].Id = oidExtensionSubjectAltName
|
|
|
|
rawValues := make([]asn1.RawValue, len(template.DNSNames))
|
|
|
|
for i, name := range template.DNSNames {
|
|
|
|
rawValues[i] = asn1.RawValue{Tag: 2, Class: 2, Bytes: []byte(name)}
|
|
|
|
}
|
|
|
|
ret[n].Value, err = asn1.Marshal(rawValues)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
|
2011-01-22 02:19:03 +08:00
|
|
|
if len(template.PolicyIdentifiers) > 0 {
|
|
|
|
ret[n].Id = oidExtensionCertificatePolicies
|
|
|
|
policies := make([]policyInformation, len(template.PolicyIdentifiers))
|
|
|
|
for i, policy := range template.PolicyIdentifiers {
|
|
|
|
policies[i].Policy = policy
|
|
|
|
}
|
|
|
|
ret[n].Value, err = asn1.Marshal(policies)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
|
2011-03-17 07:05:44 +08:00
|
|
|
if len(template.PermittedDNSDomains) > 0 {
|
|
|
|
ret[n].Id = oidExtensionNameConstraints
|
|
|
|
ret[n].Critical = template.PermittedDNSDomainsCritical
|
|
|
|
|
|
|
|
var out nameConstraints
|
|
|
|
out.Permitted = make([]generalSubtree, len(template.PermittedDNSDomains))
|
|
|
|
for i, permitted := range template.PermittedDNSDomains {
|
|
|
|
out.Permitted[i] = generalSubtree{Name: permitted}
|
|
|
|
}
|
|
|
|
ret[n].Value, err = asn1.Marshal(out)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
n++
|
|
|
|
}
|
|
|
|
|
2010-12-03 12:34:57 +08:00
|
|
|
// Adding another extension here? Remember to update the maximum number
|
|
|
|
// of elements in the make() at the top of the function.
|
|
|
|
|
|
|
|
return ret[0:n], nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
oidSHA1WithRSA = []int{1, 2, 840, 113549, 1, 1, 5}
|
|
|
|
oidRSA = []int{1, 2, 840, 113549, 1, 1, 1}
|
|
|
|
)
|
|
|
|
|
|
|
|
// CreateSelfSignedCertificate creates a new certificate based on
|
|
|
|
// a template. The following members of template are used: SerialNumber,
|
|
|
|
// Subject, NotBefore, NotAfter, KeyUsage, BasicConstraintsValid, IsCA,
|
2011-03-17 07:05:44 +08:00
|
|
|
// MaxPathLen, SubjectKeyId, DNSNames, PermittedDNSDomainsCritical,
|
|
|
|
// PermittedDNSDomains.
|
2010-12-03 12:34:57 +08:00
|
|
|
//
|
|
|
|
// The certificate is signed by parent. If parent is equal to template then the
|
|
|
|
// certificate is self-signed. The parameter pub is the public key of the
|
|
|
|
// signee and priv is the private key of the signer.
|
|
|
|
//
|
|
|
|
// The returned slice is the certificate in DER encoding.
|
|
|
|
func CreateCertificate(rand io.Reader, template, parent *Certificate, pub *rsa.PublicKey, priv *rsa.PrivateKey) (cert []byte, err os.Error) {
|
|
|
|
asn1PublicKey, err := asn1.Marshal(rsaPublicKey{
|
|
|
|
N: asn1.RawValue{Tag: 2, Bytes: pub.N.Bytes()},
|
|
|
|
E: pub.E,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(parent.SubjectKeyId) > 0 {
|
|
|
|
template.AuthorityKeyId = parent.SubjectKeyId
|
|
|
|
}
|
|
|
|
|
|
|
|
extensions, err := buildExtensions(template)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
encodedPublicKey := asn1.BitString{BitLength: len(asn1PublicKey) * 8, Bytes: asn1PublicKey}
|
|
|
|
c := tbsCertificate{
|
2011-01-22 02:19:03 +08:00
|
|
|
Version: 2,
|
2010-12-03 12:34:57 +08:00
|
|
|
SerialNumber: asn1.RawValue{Bytes: template.SerialNumber, Tag: 2},
|
|
|
|
SignatureAlgorithm: algorithmIdentifier{oidSHA1WithRSA},
|
|
|
|
Issuer: parent.Subject.toRDNSequence(),
|
|
|
|
Validity: validity{template.NotBefore, template.NotAfter},
|
|
|
|
Subject: template.Subject.toRDNSequence(),
|
2011-05-20 08:18:15 +08:00
|
|
|
PublicKey: publicKeyInfo{nil, algorithmIdentifier{oidRSA}, encodedPublicKey},
|
2010-12-03 12:34:57 +08:00
|
|
|
Extensions: extensions,
|
|
|
|
}
|
|
|
|
|
|
|
|
tbsCertContents, err := asn1.Marshal(c)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Raw = tbsCertContents
|
|
|
|
|
|
|
|
h := sha1.New()
|
|
|
|
h.Write(tbsCertContents)
|
|
|
|
digest := h.Sum()
|
|
|
|
|
2011-03-17 07:05:44 +08:00
|
|
|
signature, err := rsa.SignPKCS1v15(rand, priv, crypto.SHA1, digest)
|
2010-12-03 12:34:57 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
cert, err = asn1.Marshal(certificate{
|
2011-05-20 08:18:15 +08:00
|
|
|
nil,
|
2010-12-03 12:34:57 +08:00
|
|
|
c,
|
|
|
|
algorithmIdentifier{oidSHA1WithRSA},
|
|
|
|
asn1.BitString{Bytes: signature, BitLength: len(signature) * 8},
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|