Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for crl (0.03 sec)

  1. tests/testdata/certs/ca.crl

    -----BEGIN X509 CRL-----
    MIIBrzCBmAIBATANBgkqhkiG9w0BAQsFADAYMRYwFAYDVQQDDA1jbHVzdGVyLmxv
    Y2FsFw0yMzA3MDUxODA2MzBaFw0zMzA3MDIxODA2MzBaMCcwJQIUIf2Vv9QwxTJg
    EJObGbJvHMthI2cXDTIzMDcwNTE4MDYzMFqgIzAhMB8GA1UdIwQYMBaAFPJgj82D
    0mj8lifyRv1p/Ov4gUqlMA0GCSqGSIb3DQEBCwUAA4IBAQCjJAW4cTwqM7SoLa7F
    w9TB2CMdKVx4GGKouGRC1FLFRQMx/8rCOXRtxw8CriLlyTqhkMHwt9Y+FCvBj0F6
    ifski2z5XxCjdAxiVAuQM23cYgTm47jeiRvfGNMVkgdJ+neo+vO5lLoIaOh1W7H/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 638 bytes
    - Viewed (0)
  2. tests/testdata/certs/dummy.crl

    -----BEGIN X509 CRL-----
    MIIBrzCBmAIBATANBgkqhkiG9w0BAQsFADAYMRYwFAYDVQQDDA1jbHVzdGVyLmxv
    Y2FsFw0yMzA3MDUxODA3MzVaFw0zMzA3MDIxODA3MzVaMCcwJQIURRGeazmADQ30
    imTNVdo7eWHGYzcXDTIzMDcwNTE4MDczNVqgIzAhMB8GA1UdIwQYMBaAFPJgj82D
    0mj8lifyRv1p/Ov4gUqlMA0GCSqGSIb3DQEBCwUAA4IBAQAkZdoqv7E1kQ1/lqdx
    2qSnR6WQFNCrdiH5WCy09cEEVxvmPVByTUaZ8cL7V529iGBYDgBj1ZTw9cogWige
    Jgbgmap7uKRABtNpncjNFTwTgym40YR86XWVXt9vQpXghCkvdGRa90DIMMCZpiXN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 638 bytes
    - Viewed (0)
  3. releasenotes/notes/file-mounted-crl.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
      - |
        **Added** Certificate Revocation List(CRL) support for peer certificate validation based on file paths specified in 
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:38 UTC 2024
    - 303 bytes
    - Viewed (0)
  4. tests/testdata/certs/generate.sh

    # revoke one of the server certificates for CRL testing purpose
    openssl ca -config "${WD}/crl.conf" -revoke "${WD}/dns/cert-chain.pem"
    openssl ca -gencrl -out "${WD}/ca.crl" -config "${WD}/crl.conf"
    
    # remove the database entry for the previous revoked certificate, so that we can generate a new dummy CRL entry for an unused server cert,
    # to be used for integration tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:49:21 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. tests/integration/security/sds_ingress/util/generate_certs.sh

    # crlnumber must also be commented out to leave a V1 CRL.
    crl_extensions = crl_ext
    
    default_md      = sha256                # use SHA-256 by default
    default_crl_days= 3650                  # how long before next CRL
    
    [ crl_ext ]
    # CRL extensions.
    # Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.
    authorityKeyIdentifier=keyid:always
    [req]
    req_extensions = v3_req
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. releasenotes/notes/crl_support.yaml

    kind: feature
    area: security
    docs:
      - https://docs.google.com/document/d/13LNbJnLHe_prlOg7sPr77PjLiIuGj452/edit?usp=sharing&ouid=105743966233121608166&rtpof=true&sd=true
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 20:21:48 UTC 2023
    - 308 bytes
    - Viewed (0)
  7. pilot/pkg/credentials/model.go

    type CertInfo struct {
    	// The certificate chain
    	Cert []byte
    	// The private key
    	Key []byte
    	// The oscp staple
    	Staple []byte
    	// Certificate Revocation List information
    	CRL []byte
    }
    
    type Controller interface {
    	GetCertInfo(name, namespace string) (certInfo *CertInfo, err error)
    	GetCaCert(name, namespace string) (certInfo *CertInfo, err error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. pilot/pkg/security/authn/utils/utils.go

    		TlsMinimumProtocolVersion: minTLSVersion,
    		TlsMaximumProtocolVersion: tls.TlsParameters_TLSv1_3,
    	}
    	authn_model.ApplyToCommonTLSContext(ctx.CommonTlsContext, node, []string{}, /*subjectAltNames*/
    		"", /*crl*/
    		trustDomainAliases, ctx.RequireClientCertificate.Value)
    
    	// Compliance for downstream mesh mTLS.
    	authn_model.EnforceCompliance(ctx.CommonTlsContext)
    	return ctx
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/certificates/v1beta1/types_swagger_doc_generated.go

    ction-4.2.1.3\n\thttps://tools.ietf.org/html/rfc5280#section-4.2.1.12\n\nValid values are:\n \"signing\",\n \"digital signature\",\n \"content commitment\",\n \"key encipherment\",\n \"key agreement\",\n \"data encipherment\",\n \"cert sign\",\n \"crl sign\",\n \"encipher only\",\n \"decipher only\",\n \"any\",\n \"server auth\",\n \"client auth\",\n \"code signing\",\n \"email protection\",\n \"s/mime\",\n \"ipsec end system\",\n \"ipsec tunnel\",\n \"ipsec user\",\n \"timestamping\",\n \"ocsp signing\",\n...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/certificates/v1beta1/generated.proto

      //
      // Valid values are:
      //  "signing",
      //  "digital signature",
      //  "content commitment",
      //  "key encipherment",
      //  "key agreement",
      //  "data encipherment",
      //  "cert sign",
      //  "crl sign",
      //  "encipher only",
      //  "decipher only",
      //  "any",
      //  "server auth",
      //  "client auth",
      //  "code signing",
      //  "email protection",
      //  "s/mime",
      //  "ipsec end system",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top