type google.golang.org/grpc/credentials.AuthInfo

14 uses

	google.golang.org/grpc/credentials (current package)
		credentials.go#L128: type AuthInfo interface {
		credentials.go#L172: 	ClientHandshake(context.Context, string, net.Conn) (net.Conn, AuthInfo, error)
		credentials.go#L179: 	ServerHandshake(net.Conn) (net.Conn, AuthInfo, error)
		credentials.go#L235: 	AuthInfo AuthInfo
		credentials.go#L290: func CheckSecurityLevel(ai AuthInfo, level SecurityLevel) error {
		tls.go#L112: func (c *tlsCreds) ClientHandshake(ctx context.Context, authority string, rawConn net.Conn) (_ net.Conn, _ AuthInfo, err error) {
		tls.go#L168: func (c *tlsCreds) ServerHandshake(rawConn net.Conn) (net.Conn, AuthInfo, error) {

	google.golang.org/grpc/credentials/insecure
		insecure.go#L43: func (insecureTC) ClientHandshake(_ context.Context, _ string, conn net.Conn) (net.Conn, credentials.AuthInfo, error) {
		insecure.go#L47: func (insecureTC) ServerHandshake(conn net.Conn) (net.Conn, credentials.AuthInfo, error) {

	google.golang.org/grpc/internal/transport
		handler_server.go#L83: 	var authInfo credentials.AuthInfo
		http2_client.go#L86: 	authInfo   credentials.AuthInfo // auth info about the connection
		http2_client.go#L281: 		authInfo credentials.AuthInfo
		http2_server.go#L152: 	var authInfo credentials.AuthInfo

	google.golang.org/grpc/peer
		peer.go#L41: 	AuthInfo credentials.AuthInfo