Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for KeyUsageContentCommitment (0.36 sec)

  1. 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)
Back to top