Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TryLoadKeyFromDisk (0.25 sec)

  1. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	}
    
    	cert := certs[0]
    	intermediates := certs[1:]
    
    	return cert, intermediates, nil
    }
    
    // TryLoadKeyFromDisk tries to load the key from the disk and validates that it is valid
    func TryLoadKeyFromDisk(pkiPath, name string) (crypto.Signer, error) {
    	privateKeyPath := pathForKey(pkiPath, name)
    
    	// Parse the private key from a file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/certs.go

    				if err != nil {
    					return errors.Wrapf(err, "could not copy %s to dry run directory %s", kubeadmconstants.CACertName, data.CertificateWriteDir())
    				}
    			}
    			if _, err := pkiutil.TryLoadKeyFromDisk(data.CertificateDir(), ca.BaseName); err == nil {
    				// If CA Key existed while dryrun, copy CA Key to dryrun dir for later use
    				if data.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/certs/certlist.go

    			// Cert exists already, make sure it's valid
    			if !caCert.IsCA {
    				return errors.Errorf("certificate %q is not a CA", ca.Name)
    			}
    			// Try and load a CA Key
    			caKey, err = pkiutil.TryLoadKeyFromDisk(ic.CertificatesDir, ca.BaseName)
    			if err != nil {
    				// If there's no CA key, make sure every certificate exists.
    				for _, leaf := range leaves {
    					cl := certKeyLocation{
    						pkiDir:   ic.CertificatesDir,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top