Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SignatureAlgorithm (0.24 sec)

  1. src/crypto/x509/x509_test.go

    				t.Fatalf("Failed to parse generated CRL: %s", err)
    			}
    
    			if tc.template.SignatureAlgorithm != UnknownSignatureAlgorithm &&
    				parsedCRL.SignatureAlgorithm != tc.template.SignatureAlgorithm {
    				t.Fatalf("SignatureAlgorithm mismatch: got %v; want %v.", parsedCRL.SignatureAlgorithm,
    					tc.template.SignatureAlgorithm)
    			}
    
    			if len(tc.template.RevokedCertificates) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    func loadRSAKey(t *testing.T, filepath string, alg jose.SignatureAlgorithm) *jose.JSONWebKey {
    	return loadKey(t, filepath, alg, func(b []byte) (interface{}, error) {
    		key, err := x509.ParsePKCS1PrivateKey(b)
    		if err != nil {
    			return nil, err
    		}
    		return key.Public(), nil
    	})
    }
    
    func loadRSAPrivKey(t *testing.T, filepath string, alg jose.SignatureAlgorithm) *jose.JSONWebKey {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	OutQLen         uint32
    	DescrLen        uint32
    	Descr           [MAXLEN_IFDESCR]byte
    }
    
    type CertInfo struct {
    	Version              uint32
    	SerialNumber         CryptIntegerBlob
    	SignatureAlgorithm   CryptAlgorithmIdentifier
    	Issuer               CertNameBlob
    	NotBefore            Filetime
    	NotAfter             Filetime
    	Subject              CertNameBlob
    	SubjectPublicKeyInfo CertPublicKeyInfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. api/go1.3.txt

    pkg crypto/x509, type CertificateRequest struct, RawTBSCertificateRequest []uint8
    pkg crypto/x509, type CertificateRequest struct, Signature []uint8
    pkg crypto/x509, type CertificateRequest struct, SignatureAlgorithm SignatureAlgorithm
    pkg crypto/x509, type CertificateRequest struct, Subject pkix.Name
    pkg crypto/x509, type CertificateRequest struct, Version int
    pkg crypto/x509/pkix, type AttributeTypeAndValueSET struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  5. cmd/admin-handlers.go

    			for _, v := range c.URIs {
    				check ^= xxh3.HashString(v.String())
    			}
    			tlsInfo.Certs = append(tlsInfo.Certs, madmin.TLSCert{
    				PubKeyAlgo:    c.PublicKeyAlgorithm.String(),
    				SignatureAlgo: c.SignatureAlgorithm.String(),
    				NotBefore:     c.NotBefore,
    				NotAfter:      c.NotAfter,
    				Checksum:      strconv.FormatUint(check, 16),
    			})
    		}
    	}
    	return tlsInfo
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top