google.golang.org/grpc/credentials.CommonAuthInfo.SecurityLevel (field)

10 uses

	google.golang.org/grpc/credentials (current package)
		credentials.go#L91: 	SecurityLevel SecurityLevel
		credentials.go#L253: 		if ci.GetCommonAuthInfo().SecurityLevel == InvalidSecurityLevel {
		credentials.go#L256: 		if ci.GetCommonAuthInfo().SecurityLevel < level {
		credentials.go#L257: 			return fmt.Errorf("requires SecurityLevel %v; connection has %v", level, ci.GetCommonAuthInfo().SecurityLevel)
		tls.go#L103: 			SecurityLevel: PrivacyAndIntegrity,
		tls.go#L122: 			SecurityLevel: PrivacyAndIntegrity,

	google.golang.org/grpc/credentials/insecure
		insecure.go#L44: 	return conn, info{credentials.CommonAuthInfo{SecurityLevel: credentials.NoSecurity}}, nil
		insecure.go#L48: 	return conn, info{credentials.CommonAuthInfo{SecurityLevel: credentials.NoSecurity}}, nil

	google.golang.org/grpc/internal/transport
		handler_server.go#L383: 		pr.AuthInfo = credentials.TLSInfo{State: *req.TLS, CommonAuthInfo: credentials.CommonAuthInfo{SecurityLevel: credentials.PrivacyAndIntegrity}}
		http2_client.go#L293: 					secLevel := ci.GetCommonAuthInfo().SecurityLevel