Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 285 for csor (0.15 sec)

  1. src/crypto/x509/x509.go

    func ParseCertificateRequest(asn1Data []byte) (*CertificateRequest, error) {
    	var csr certificateRequest
    
    	rest, err := asn1.Unmarshal(asn1Data, &csr)
    	if err != nil {
    		return nil, err
    	} else if len(rest) != 0 {
    		return nil, asn1.SyntaxError{Msg: "trailing data"}
    	}
    
    	return parseCertificateRequest(&csr)
    }
    
    func parseCertificateRequest(in *certificateRequest) (*CertificateRequest, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    	return obj, actual, strict
    }
    
    // selfDescribedCBOR is the CBOR encoding of the head of tag number 55799. This tag, specified in
    // RFC 8949 Section 3.4.6 "Self-Described CBOR", encloses all output from the encoder, has no
    // special semantics, and is used as a magic number to recognize CBOR-encoded data items.
    //
    // See https://www.rfc-editor.org/rfc/rfc8949.html#name-self-described-cbor.
    var selfDescribedCBOR = []byte{0xd9, 0xd9, 0xf7}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. hack/testdata/auth/testuser.csr

    # this is a test-only certificate request that is used in integration
    # tests to test certificate based auth.
    # generated with 'openssl req -out testuser.csr -key testuser.key -new -sha256'
    # then skipping all the options except for setting CN to testuser
    -----BEGIN CERTIFICATE REQUEST-----
    MIICWDCCAUACAQAwEzERMA8GA1UEAwwIdGVzdHVzZXIwggEiMA0GCSqGSIb3DQEB
    AQUAA4IBDwAwggEKAoIBAQC0MWVzF3QC92dQSzA/tBla3okdNkSNyd+SbnzFNxIG
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 07 21:54:32 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. releasenotes/notes/limit-csr-clusterrole.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
        **Added** check to limit the clusterrole for k8s CSR permissions for
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:22 UTC 2023
    - 272 bytes
    - Viewed (0)
  5. hack/testdata/csr.yml

    David Eads <******@****.***> 1618841197 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 19 14:06:37 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/testdata/client.csr.json

    David Eads <******@****.***> 1567691999 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 25 bytes
    - Viewed (0)
  7. pkg/controller/certificates/signer/testdata/kubelet.csr

    Mike Danese <******@****.***> 1494279885 -0700
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 23 22:25:58 UTC 2017
    - 408 bytes
    - Viewed (0)
  8. pkg/kubeapiserver/options/testdata/intermediate.csr.json

    David Eads <******@****.***> 1567691999 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 78 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/testdata/intermediate.csr.json

    David Eads <******@****.***> 1567691999 -0400
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 13:50:20 UTC 2019
    - 78 bytes
    - Viewed (0)
  10. releasenotes/notes/ecc-csr.yaml

    Brian Avery <******@****.***> 1597180858 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 162 bytes
    - Viewed (0)
Back to top