mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
21 lines
411 B
Go
21 lines
411 B
Go
|
package auth
|
||
|
|
||
|
// Anonymous
|
||
|
const (
|
||
|
SchemeIDAnonymous = "smithy.api#noAuth"
|
||
|
)
|
||
|
|
||
|
// HTTP auth schemes
|
||
|
const (
|
||
|
SchemeIDHTTPBasic = "smithy.api#httpBasicAuth"
|
||
|
SchemeIDHTTPDigest = "smithy.api#httpDigestAuth"
|
||
|
SchemeIDHTTPBearer = "smithy.api#httpBearerAuth"
|
||
|
SchemeIDHTTPAPIKey = "smithy.api#httpApiKeyAuth"
|
||
|
)
|
||
|
|
||
|
// AWS auth schemes
|
||
|
const (
|
||
|
SchemeIDSigV4 = "aws.auth#sigv4"
|
||
|
SchemeIDSigV4A = "aws.auth#sigv4a"
|
||
|
)
|