第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

C# 中的 gRPC 客戶端無(wú)法與支持 mTLS 的 Go 中的 gRPC 服務(wù)器一起使用

C# 中的 gRPC 客戶端無(wú)法與支持 mTLS 的 Go 中的 gRPC 服務(wù)器一起使用

Go
慕仙森 2023-08-21 14:50:23
我在 Golang 中有一個(gè)gRPC 服務(wù)器,它使用以下 ServerOptions 啟用了 mTLS:// getServerOptions returns a list of GRPC server options.// Current options are TLS certs and opencensus stats handler.func (h *serviceHandler) getServerOptions() []grpc.ServerOption {? ? tlsCer, err := tls.LoadX509KeyPair(tlsDir+"tls.crt", tlsDir+"tls.key")? ? if err != nil {? ? ? ? logger.WithError(err).Fatal("failed to generate credentials")? ? }? ? cfg := &tls.Config{? ? ? ? Certificates: []tls.Certificate{tlsCer},? ? ? ? ClientAuth:? ?tls.RequireAndVerifyClientCert,? ? ? ? GetConfigForClient: func(*tls.ClientHelloInfo) (*tls.Config, error) {? ? ? ? ? ? h.certMutex.RLock()? ? ? ? ? ? defer h.certMutex.RUnlock()? ? ? ? ? ? return &tls.Config{? ? ? ? ? ? ? ? Certificates: []tls.Certificate{tlsCer},? ? ? ? ? ? ? ? ClientAuth:? ?tls.RequireAndVerifyClientCert,? ? ? ? ? ? ? ? ClientCAs:? ? h.caCertPool,? ? ? ? ? ? }, nil? ? ? ? },? ? }? ? // Add options for creds and OpenCensus stats handler to enable stats and tracing.? ? return []grpc.ServerOption{grpc.Creds(credentials.NewTLS(cfg)), grpc.StatsHandler(&ocgrpc.ServerHandler{})}}服務(wù)器對(duì)于Golang 中的gRPC 客戶端工作正常,但在證書交換握手后對(duì)于以下 gRPC c# 客戶端失敗。? ? ? static async Task Main(string[] args)? ? ? ? {? ? ? ? ? ? string baseAddress = "x.x.x.x";? ? ? ? ? ? var x509Cert = new X509Certificate2("client.pfx", "123");? ? ? ? ? ? var client = CreateClientWithCert("https://" + baseAddress + ":443", x509Cert);? ? ? ? ? ? try {? ? ? ? ? ? ? ? var response = await client.PostAllocateAsync(new AllocationRequest {Namespace = "Default"});? ? ? ? ? ? ? ? Console.Write(response.State.ToString());? ? ? ? ? ? }?? ? ? ? ? ? catch(RpcException e)? ? ? ? ? ? {? ? ? ? ? ? ? ? Console.WriteLine($"gRPC error: {e.Status.Detail}");? ? ? ? ? ? }? ? ? ? ? ? catch?? ? ? ? ? ? {? ? ? ? ? ? ? ? Console.WriteLine($"Unexpected error calling agones-allocator");? ? ? ? ? ? ? ? throw;? ? ? ? ? ? }? ? ? ? }? ? }
查看完整描述

1 回答

?
慕沐林林

TA貢獻(xiàn)2016條經(jīng)驗(yàn) 獲得超9個(gè)贊

根本原因是當(dāng)在 golang 服務(wù)器中使用 GetConfigForClient 時(shí)(在本例中用于刷新客戶端 CA 證書),來(lái)自 C# 客戶端的請(qǐng)求失敗。然而,當(dāng)它被替換為VerifyPeerCertificate時(shí),問(wèn)題就得到了解決。


查看完整回答
反對(duì) 回復(fù) 2023-08-21
  • 1 回答
  • 0 關(guān)注
  • 182 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)