Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for KeyUsageEncipherOnly (0.27 sec)

  1. pkg/controller/certificates/authority/policies_test.go

    			expectErr:           false,
    		},
    		{
    			usages:              []capi.KeyUsage{"cert sign", "encipher only"},
    			expectedKeyUsage:    x509.KeyUsageCertSign | x509.KeyUsageEncipherOnly,
    			expectedExtKeyUsage: nil,
    			expectErr:           false,
    		},
    		{
    			usages:              []capi.KeyUsage{"ocsp signing", "crl sign", "s/mime", "content commitment"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 05 22:45:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  2. pkg/test/csrctrl/authority/policies.go

    	capi.UsageDataEncipherment:  x509.KeyUsageDataEncipherment,
    	capi.UsageCertSign:          x509.KeyUsageCertSign,
    	capi.UsageCRLSign:           x509.KeyUsageCRLSign,
    	capi.UsageEncipherOnly:      x509.KeyUsageEncipherOnly,
    	capi.UsageDecipherOnly:      x509.KeyUsageDecipherOnly,
    }
    
    var extKeyUsageDict = map[capi.KeyUsage]x509.ExtKeyUsage{
    	capi.UsageAny:             x509.ExtKeyUsageAny,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 17:06:22 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  3. pkg/controller/certificates/authority/policies.go

    	capi.UsageDataEncipherment:  x509.KeyUsageDataEncipherment,
    	capi.UsageCertSign:          x509.KeyUsageCertSign,
    	capi.UsageCRLSign:           x509.KeyUsageCRLSign,
    	capi.UsageEncipherOnly:      x509.KeyUsageEncipherOnly,
    	capi.UsageDecipherOnly:      x509.KeyUsageDecipherOnly,
    }
    
    var extKeyUsageDict = map[capi.KeyUsage]x509.ExtKeyUsage{
    	capi.UsageAny:             x509.ExtKeyUsageAny,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    const (
    	KeyUsageDigitalSignature KeyUsage = 1 << iota
    	KeyUsageContentCommitment
    	KeyUsageKeyEncipherment
    	KeyUsageDataEncipherment
    	KeyUsageKeyAgreement
    	KeyUsageCertSign
    	KeyUsageCRLSign
    	KeyUsageEncipherOnly
    	KeyUsageDecipherOnly
    )
    
    // RFC 5280, 4.2.1.12  Extended Key Usage
    //
    //	anyExtendedKeyUsage OBJECT IDENTIFIER ::= { id-ce-extKeyUsage 0 }
    //
    //	id-kp OBJECT IDENTIFIER ::= { id-pkix 3 }
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"KeyUsageCertSign", Const, 0},
    		{"KeyUsageContentCommitment", Const, 0},
    		{"KeyUsageDataEncipherment", Const, 0},
    		{"KeyUsageDecipherOnly", Const, 0},
    		{"KeyUsageDigitalSignature", Const, 0},
    		{"KeyUsageEncipherOnly", Const, 0},
    		{"KeyUsageKeyAgreement", Const, 0},
    		{"KeyUsageKeyEncipherment", Const, 0},
    		{"MD2WithRSA", Const, 0},
    		{"MD5WithRSA", Const, 0},
    		{"MarshalECPrivateKey", Func, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg crypto/x509, const KeyUsageDataEncipherment KeyUsage
    pkg crypto/x509, const KeyUsageDecipherOnly KeyUsage
    pkg crypto/x509, const KeyUsageDigitalSignature KeyUsage
    pkg crypto/x509, const KeyUsageEncipherOnly KeyUsage
    pkg crypto/x509, const KeyUsageKeyAgreement KeyUsage
    pkg crypto/x509, const KeyUsageKeyEncipherment KeyUsage
    pkg crypto/x509, const MD2WithRSA SignatureAlgorithm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. api/go1.1.txt

    pkg crypto/x509, const KeyUsageDataEncipherment = 8
    pkg crypto/x509, const KeyUsageDecipherOnly = 256
    pkg crypto/x509, const KeyUsageDigitalSignature = 1
    pkg crypto/x509, const KeyUsageEncipherOnly = 128
    pkg crypto/x509, const KeyUsageKeyAgreement = 16
    pkg crypto/x509, const KeyUsageKeyEncipherment = 4
    pkg crypto/x509, const MD2WithRSA = 1
    pkg crypto/x509, const MD5WithRSA = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top