mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-11-03 19:17:29 -05:00 
			
		
		
		
	* pki: Initial commit of PKI app (WIP) (see #2502 and #3021) * pki: Ability to use root/intermediates, and sign with root * pki: Fix benign misnamings left over from copy+paste * pki: Only install root if not already trusted * Make HTTPS port the default; all names use auto-HTTPS; bug fixes * Fix build - what happened to our CI tests?? * Fix go.mod
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2015 Matthew Holt and The Caddy Authors
 | 
						|
//
 | 
						|
// Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
// you may not use this file except in compliance with the License.
 | 
						|
// You may obtain a copy of the License at
 | 
						|
//
 | 
						|
//     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
//
 | 
						|
// Unless required by applicable law or agreed to in writing, software
 | 
						|
// distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
// See the License for the specific language governing permissions and
 | 
						|
// limitations under the License.
 | 
						|
 | 
						|
package caddypki
 | 
						|
 | 
						|
import (
 | 
						|
	"crypto/x509"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/smallstep/cli/crypto/x509util"
 | 
						|
)
 | 
						|
 | 
						|
func generateRoot(commonName string) (rootCrt *x509.Certificate, privateKey interface{}, err error) {
 | 
						|
	rootProfile, err := x509util.NewRootProfile(commonName)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	rootProfile.Subject().NotAfter = time.Now().Add(defaultRootLifetime) // TODO: make configurable
 | 
						|
	return newCert(rootProfile)
 | 
						|
}
 | 
						|
 | 
						|
func generateIntermediate(commonName string, rootCrt *x509.Certificate, rootKey interface{}) (cert *x509.Certificate, privateKey interface{}, err error) {
 | 
						|
	interProfile, err := x509util.NewIntermediateProfile(commonName, rootCrt, rootKey)
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	interProfile.Subject().NotAfter = time.Now().Add(defaultIntermediateLifetime) // TODO: make configurable
 | 
						|
	return newCert(interProfile)
 | 
						|
}
 | 
						|
 | 
						|
func newCert(profile x509util.Profile) (cert *x509.Certificate, privateKey interface{}, err error) {
 | 
						|
	certBytes, err := profile.CreateCertificate()
 | 
						|
	if err != nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	privateKey = profile.SubjectPrivateKey()
 | 
						|
	cert, err = x509.ParseCertificate(certBytes)
 | 
						|
	return
 | 
						|
}
 |