CommonAuthInfo contains authenticated information common to AuthInfo implementations. It should be embedded in a struct implementing AuthInfo to provide additional information about the credentials. This API is experimental.
| 87 | // |
| 88 | // This API is experimental. |
| 89 | type CommonAuthInfo struct { |
| 90 | SecurityLevel SecurityLevel |
| 91 | } |
| 92 | |
| 93 | // GetCommonAuthInfo returns the pointer to CommonAuthInfo struct. |
| 94 | func (c CommonAuthInfo) GetCommonAuthInfo() CommonAuthInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected