Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for KeyUsageContentCommitment (0.38 sec)

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

    			expectErr:           false,
    		},
    		{
    			usages:              []capi.KeyUsage{"ocsp signing", "crl sign", "s/mime", "content commitment"},
    			expectedKeyUsage:    x509.KeyUsageCRLSign | x509.KeyUsageContentCommitment,
    			expectedExtKeyUsage: []x509.ExtKeyUsage{x509.ExtKeyUsageEmailProtection, x509.ExtKeyUsageOCSPSigning},
    			expectErr:           false,
    		},
    		{
    			usages:              []capi.KeyUsage{"unsupported string"},
    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

    }
    
    var keyUsageDict = map[capi.KeyUsage]x509.KeyUsage{
    	capi.UsageSigning:           x509.KeyUsageDigitalSignature,
    	capi.UsageDigitalSignature:  x509.KeyUsageDigitalSignature,
    	capi.UsageContentCommitment: x509.KeyUsageContentCommitment,
    	capi.UsageKeyEncipherment:   x509.KeyUsageKeyEncipherment,
    	capi.UsageKeyAgreement:      x509.KeyUsageKeyAgreement,
    	capi.UsageDataEncipherment:  x509.KeyUsageDataEncipherment,
    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

    }
    
    var keyUsageDict = map[capi.KeyUsage]x509.KeyUsage{
    	capi.UsageSigning:           x509.KeyUsageDigitalSignature,
    	capi.UsageDigitalSignature:  x509.KeyUsageDigitalSignature,
    	capi.UsageContentCommitment: x509.KeyUsageContentCommitment,
    	capi.UsageKeyEncipherment:   x509.KeyUsageKeyEncipherment,
    	capi.UsageKeyAgreement:      x509.KeyUsageKeyAgreement,
    	capi.UsageDataEncipherment:  x509.KeyUsageDataEncipherment,
    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

    }
    
    // KeyUsage represents the set of actions that are valid for a given key. It's
    // a bitmap of the KeyUsage* constants.
    type KeyUsage int
    
    const (
    	KeyUsageDigitalSignature KeyUsage = 1 << iota
    	KeyUsageContentCommitment
    	KeyUsageKeyEncipherment
    	KeyUsageDataEncipherment
    	KeyUsageKeyAgreement
    	KeyUsageCertSign
    	KeyUsageCRLSign
    	KeyUsageEncipherOnly
    	KeyUsageDecipherOnly
    )
    
    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

    		{"InsecureAlgorithmError", Type, 6},
    		{"InvalidReason", Type, 0},
    		{"IsEncryptedPEMBlock", Func, 1},
    		{"KeyUsage", Type, 0},
    		{"KeyUsageCRLSign", Const, 0},
    		{"KeyUsageCertSign", Const, 0},
    		{"KeyUsageContentCommitment", Const, 0},
    		{"KeyUsageDataEncipherment", Const, 0},
    		{"KeyUsageDecipherOnly", Const, 0},
    		{"KeyUsageDigitalSignature", Const, 0},
    		{"KeyUsageEncipherOnly", Const, 0},
    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 ExtKeyUsageTimeStamping ExtKeyUsage
    pkg crypto/x509, const KeyUsageCRLSign KeyUsage
    pkg crypto/x509, const KeyUsageCertSign KeyUsage
    pkg crypto/x509, const KeyUsageContentCommitment KeyUsage
    pkg crypto/x509, const KeyUsageDataEncipherment KeyUsage
    pkg crypto/x509, const KeyUsageDecipherOnly KeyUsage
    pkg crypto/x509, const KeyUsageDigitalSignature KeyUsage
    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 IncompatibleUsage = 4
    pkg crypto/x509, const IncompatibleUsage InvalidReason
    pkg crypto/x509, const KeyUsageCRLSign = 64
    pkg crypto/x509, const KeyUsageCertSign = 32
    pkg crypto/x509, const KeyUsageContentCommitment = 2
    pkg crypto/x509, const KeyUsageDataEncipherment = 8
    pkg crypto/x509, const KeyUsageDecipherOnly = 256
    pkg crypto/x509, const KeyUsageDigitalSignature = 1
    pkg crypto/x509, const KeyUsageEncipherOnly = 128
    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