Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for san1 (0.04 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    					Addresses: []string{"1.2.3.4"},
    					Hosts:     []string{"a.example.com", "b.example.com"},
    					Ports: []*networking.ServicePort{{
    						Number: 80,
    						Name:   "http",
    					}},
    					SubjectAltNames: []string{"san1"},
    					Resolution:      networking.ServiceEntry_DNS,
    				},
    			},
    			result: []*workloadapi.Service{
    				{
    					Name:      "name",
    					Namespace: "ns",
    					Hostname:  "a.example.com",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package asn1 contains supporting types for parsing and building ASN.1
    // messages with the cryptobyte package.
    package asn1 // import "golang.org/x/crypto/cryptobyte/asn1"
    
    // Tag represents an ASN.1 identifier octet, consisting of a tag number
    // (indicating a type) and class (such as context-specific or constructed).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 20:28:54 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  3. security/pkg/pki/util/san.go

    		return nil, fmt.Errorf("the input is not a SAN extension")
    	}
    
    	var sequence asn1.RawValue
    	if rest, err := asn1.Unmarshal(sanExt.Value, &sequence); err != nil {
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, fmt.Errorf("the SAN extension is incorrectly encoded")
    	}
    
    	// Check the rawValue is a sequence.
    	if !sequence.IsCompound || sequence.Tag != asn1.TagSequence || sequence.Class != asn1.ClassUniversal {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. security/pkg/pki/util/san_test.go

    			expectedIDs:    nil,
    			expectedErrMsg: "the SAN extension does not exist",
    		},
    		"Extensions without SAN": {
    			exts: []pkix.Extension{
    				{Id: asn1.ObjectIdentifier{1, 2, 3, 4}},
    				{Id: asn1.ObjectIdentifier{3, 2, 1}},
    			},
    			expectedIDs:    nil,
    			expectedErrMsg: "the SAN extension does not exist",
    		},
    		"Extensions with bad SAN": {
    			exts: []pkix.Extension{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pkg/test/cert/ca/intermediate.go

    subjectAltName=@san
    [ san ]
    DNS.1 = istiod.{{ .SystemNamespace }}
    DNS.2 = istiod.{{ .SystemNamespace }}.svc
    DNS.3 = istio-pilot.{{ .SystemNamespace }}
    DNS.4 = istio-pilot.{{ .SystemNamespace }}.svc
    [ req_dn ]
    O = Istio
    CN = Intermediate CA
    `
    )
    
    // NewIstioConfig creates an extensions configuration for Istio, using the given system namespace in
    // the DNS SANs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

        }
    
        def "prefers kebab case match over case insensitive camel case match"() {
            expect:
            matches("sN", "some-name", "sand")
            matches("sN", "some-name-with", "sand")
            matches("sN", "some-name-with-extra", "sand")
        }
    
        def "does not select items when no matches"() {
            expect:
            doesNotMatch("name")
            doesNotMatch("name", "other")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/spnego/NegTokenTarg.java

    import java.util.Enumeration;
    
    import org.bouncycastle.asn1.ASN1EncodableVector;
    import org.bouncycastle.asn1.ASN1Encoding;
    import org.bouncycastle.asn1.ASN1Enumerated;
    import org.bouncycastle.asn1.ASN1InputStream;
    import org.bouncycastle.asn1.ASN1ObjectIdentifier;
    import org.bouncycastle.asn1.ASN1OctetString;
    import org.bouncycastle.asn1.ASN1OutputStream;
    import org.bouncycastle.asn1.ASN1Sequence;
    import org.bouncycastle.asn1.ASN1TaggedObject;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 04 04:18:31 UTC 2021
    - 5.4K bytes
    - Viewed (0)
  8. hack/update-generated-docs.sh

      mkdir -p "${dest}/docs/man/man1/"
      genman "${dest}/docs/man/man1/" "kube-apiserver"
      genman "${dest}/docs/man/man1/" "kube-controller-manager"
      genman "${dest}/docs/man/man1/" "kube-proxy"
      genman "${dest}/docs/man/man1/" "kube-scheduler"
      genman "${dest}/docs/man/man1/" "kubelet"
      genman "${dest}/docs/man/man1/" "kubectl"
      genman "${dest}/docs/man/man1/" "kubeadm"
    
      mkdir -p "${dest}/docs/yaml/kubectl/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. src/crypto/x509/pkcs8.go

    func ParsePKCS8PrivateKey(der []byte) (key any, err error) {
    	var privKey pkcs8
    	if _, err := asn1.Unmarshal(der, &privKey); err != nil {
    		if _, err := asn1.Unmarshal(der, &ecPrivateKey{}); err == nil {
    			return nil, errors.New("x509: failed to parse private key (use ParseECPrivateKey instead for this key format)")
    		}
    		if _, err := asn1.Unmarshal(der, &pkcs1PrivateKey{}); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/crypto/x509/pkix/pkix.go

    type TBSCertificateList struct {
    	Raw                 asn1.RawContent
    	Version             int `asn1:"optional,default:0"`
    	Signature           AlgorithmIdentifier
    	Issuer              RDNSequence
    	ThisUpdate          time.Time
    	NextUpdate          time.Time            `asn1:"optional"`
    	RevokedCertificates []RevokedCertificate `asn1:"optional"`
    	Extensions          []Extension          `asn1:"tag:0,optional,explicit"`
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top