Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    package cryptobyte
    
    import (
    	encoding_asn1 "encoding/asn1"
    	"fmt"
    	"math/big"
    	"reflect"
    	"time"
    
    	"golang.org/x/crypto/cryptobyte/asn1"
    )
    
    // This file contains ASN.1-related methods for String and Builder.
    
    // Builder
    
    // AddASN1Int64 appends a DER-encoded ASN.1 INTEGER.
    func (b *Builder) AddASN1Int64(v int64) {
    	b.addASN1Signed(asn1.INTEGER, v)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. src/encoding/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 implements parsing of DER-encoded ASN.1 data structures,
    // as defined in ITU-T Rec X.690.
    //
    // See also “A Layman's Guide to a Subset of ASN.1, BER, and DER,”
    // http://luca.ntop.org/Teaching/Appunti/asn1.html.
    package asn1
    
    // ASN.1 is a syntax for specifying abstract objects and BER, DER, PER, XER etc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  3. src/crypto/x509/name_constraints_test.go

    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{"dns:example.com"},
    			ekus: []string{"msSGC"},
    		},
    		requestedEKUs: []ExtKeyUsage{ExtKeyUsageServerAuth},
    		expectedError: "incompatible key usage",
    	},
    
    	// An invalid DNS SAN should be detected only at validation time so
    	// that we can process CA certificates in the wild that have invalid SANs.
    	// See https://github.com/golang/go/issues/23995
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/certs.go

    	sans := []string{}
    
    	for _, dnsName := range certConfig.AltNames.DNSNames {
    		if dnsName != "" {
    			sans = append(sans, dnsName)
    		}
    	}
    
    	for _, ip := range certConfig.AltNames.IPs {
    		sans = append(sans, ip.String())
    	}
    	return fmt.Sprintf("\n\nDefault SANs are %s", strings.Join(sans, ", "))
    }
    
    func runCertsSa(c workflow.RunData) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/crypto/x509/oid_test.go

    		{oid: mustNewOIDFromInts(t, []uint64{1, 33, 23}), oid2: asn1.ObjectIdentifier{1, 33, 22}, eq: false},
    		{oid: mustNewOIDFromInts(t, []uint64{1, 33, 127}), oid2: asn1.ObjectIdentifier{1, 33, 127}, eq: true},
    		{oid: mustNewOIDFromInts(t, []uint64{1, 33, 128}), oid2: asn1.ObjectIdentifier{1, 33, 127}, eq: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. api/go1.6.txt

    pkg encoding/asn1, const TagSequence ideal-int
    pkg encoding/asn1, const TagSet = 17
    pkg encoding/asn1, const TagSet ideal-int
    pkg encoding/asn1, const TagT61String = 20
    pkg encoding/asn1, const TagT61String ideal-int
    pkg encoding/asn1, const TagUTCTime = 23
    pkg encoding/asn1, const TagUTCTime ideal-int
    pkg encoding/asn1, const TagUTF8String = 12
    pkg encoding/asn1, const TagUTF8String ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:40:13 UTC 2016
    - 12.9K bytes
    - Viewed (0)
  7. docs/vi/docs/index.md

      <a href="https://fastapi.tiangolo.com"><img src="https://fastapi.tiangolo.com/img/logo-margin/logo-teal.png" alt="FastAPI"></a>
    </p>
    <p align="center">
        FastAPI framework, hiệu năng cao, dễ học, dễ code, sẵn sàng để tạo ra sản phẩm
    </p>
    <p align="center">
    <a href="https://github.com/tiangolo/fastapi/actions?query=workflow%3ATest+event%3Apush+branch%3Amaster" target="_blank">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/encoding/asn1/marshal_test.go

    type optionalRawValueTest struct {
    	A RawValue `asn1:"optional"`
    }
    
    type omitEmptyTest struct {
    	A []string `asn1:"omitempty"`
    }
    
    type defaultTest struct {
    	A int `asn1:"optional,default:1"`
    }
    
    type applicationTest struct {
    	A int `asn1:"application,tag:0"`
    	B int `asn1:"application,tag:1,explicit"`
    }
    
    type privateTest struct {
    	A int `asn1:"private,tag:0"`
    	B int `asn1:"private,tag:1,explicit"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
  9. src/crypto/x509/verify.go

    		return "x509: certificate relies on legacy Common Name field, use SANs instead"
    	}
    
    	var valid string
    	if ip := net.ParseIP(h.Host); ip != nil {
    		// Trying to validate an IP
    		if len(c.IPAddresses) == 0 {
    			return "x509: cannot validate certificate for " + h.Host + " because it doesn't contain any IP SANs"
    		}
    		for _, san := range c.IPAddresses {
    			if len(valid) > 0 {
    				valid += ", "
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    // certNames is used to print user facing warnings and should be the name of the cert the altNames will be used for
    func appendSANsToAltNames(altNames *certutil.AltNames, SANs []string, certName string) {
    	for _, altname := range SANs {
    		if ip := netutils.ParseIPSloppy(altname); ip != nil {
    			altNames.IPs = append(altNames.IPs, ip)
    		} else if len(validation.IsDNS1123Subdomain(altname)) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top