if i understand correctly if i wish to extract the master key for wireshark sniffingi need to use this:GrpcSslContexts.configure(sslContextBuilder, Security.getProvider("SunJSSE"));
are there any major differences between using the default provider vs using SunJSSE?performance? security ?is there a way to configure the provider externally via system property?
You can use `-Dio.netty.transport.noNative=true` or `-Dio.grpc.netty.shaded.io.netty.transport.noNative=true` to disable loading tcnative, depending on whether you are using grpc-netty or grpc-netty-shaded, respectively.