blob: 0a58c1992796743d3f291c995127428ba3551e5f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// KeyUsages undocumented
type KeyUsages int
const (
// KeyUsagesVKeyEncipherment undocumented
KeyUsagesVKeyEncipherment KeyUsages = 1
// KeyUsagesVDigitalSignature undocumented
KeyUsagesVDigitalSignature KeyUsages = 2
)
// KeyUsagesPKeyEncipherment returns a pointer to KeyUsagesVKeyEncipherment
func KeyUsagesPKeyEncipherment() *KeyUsages {
v := KeyUsagesVKeyEncipherment
return &v
}
// KeyUsagesPDigitalSignature returns a pointer to KeyUsagesVDigitalSignature
func KeyUsagesPDigitalSignature() *KeyUsages {
v := KeyUsagesVDigitalSignature
return &v
}
|