diff options
Diffstat (limited to 'vendor/github.com/yaegashi/msgraph.go/beta/KeyUsagesEnum.go')
-rw-r--r-- | vendor/github.com/yaegashi/msgraph.go/beta/KeyUsagesEnum.go | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/vendor/github.com/yaegashi/msgraph.go/beta/KeyUsagesEnum.go b/vendor/github.com/yaegashi/msgraph.go/beta/KeyUsagesEnum.go deleted file mode 100644 index 0a58c199..00000000 --- a/vendor/github.com/yaegashi/msgraph.go/beta/KeyUsagesEnum.go +++ /dev/null @@ -1,25 +0,0 @@ -// 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 -} |