--
You received this message because you are subscribed to the Google Groups "QUIC Prototype Protocol Discussion group" group.
To unsubscribe from this group and stop receiving emails from it, send an email to proto-quic+...@chromium.org.
To post to this group, send email to proto...@chromium.org.
For more options, visit https://groups.google.com/a/chromium.org/d/optout.
[0919/235605:WARNING:proof_verifier_chromium.cc(286)] Failed to verify certificate chain: net::ERR_CERT_AUTHORITY_INVALID
ubuntu@ubuntu:~/chromium/src$ ./out/Debug/quic_client --host=127.0.0.1 --port=6121 https://www.example.com/
[0923/165118:ERROR:cert_verify_proc_nss.cc(922)] CERT_PKIXVerifyCert for 127.0.0.1 failed err=-8179
[0923/165118:WARNING:proof_verifier_chromium.cc(286)] Failed to verify certificate chain: net::ERR_CERT_AUTHORITY_INVALID
Failed to connect to 127.0.0.1:6121. Error: QUIC_PROOF_INVALID
--
I still can't get the toy client/server to work on Ubuntu. I installed the root cert using the certutil command below and by coping it to /usr/share/ca-certificates/extra/ and running "sudo dpkg-reconfigure ca-certificates" Is there anything else you need to do? The error I am getting is below.
certutil -d sql:$HOME/.pki/nssdb -A -t "C,," -n "TestRoot" -i net/tools/quic/certs/out/2048-sha256-root.pem
[0923/215723:WARNING:proof_verifier_chromium.cc(286)] Failed to verify certificate chain: net::ERR_CERT_AUTHORITY_INVALID[0923/215723:VERBOSE1:quic_connection.cc(1946)] Client: Force closing 2880494839385808647 with error QUIC_PROOF_INVALID (42) Proof invalid: Failed to verify certificate chain: net::ERR_CERT_AUTHORITY_INVALID[0923/215723:VERBOSE1:quic_connection.cc(2186)] Entering Batch Mode.[0923/215723:VERBOSE1:quic_connection.cc(2194)] Bundling ack with outgoing packet.[0923/215723:VERBOSE1:quic_packet_creator.cc(600)] Adding frame: type { ACK_FRAME } entropy_hash: 2 largest_observed: 2 delta_time_largest_observed: 10730 missing_packets: [ ] is_truncated: 0 revived_packets: [ ] received_packets: [ ][0923/215723:VERBOSE1:quic_packet_creator.cc(600)] Adding frame: type { STOP_WAITING_FRAME } entropy_hash: 0 least_unacked: 1[0923/215723:VERBOSE1:quic_packet_creator.cc(600)] Adding frame: type { CONNECTION_CLOSE_FRAME } error_code { 42 } error_details { Proof invalid: Failed to verify certificate chain: net::ERR_CERT_AUTHORITY_INVALID }
[0923/215723:VERBOSE1:quic_framer.cc(710)] Appending header: { connection_id: 2880494839385808647, connection_id_length:8, packet_number_length:1, reset_flag: 0, version_flag: 0, fec_flag: 0, entropy_flag: 1, entropy hash: 0, packet_number: 3, is_in_fec_group:0, fec_group: 0}
[0923/215723:VERBOSE1:quic_connection.cc(1540)] Client: Sending packet 3 : data bearing , encryption level: ENCRYPTION_NONE, encrypted length:121[0923/215723:VERBOSE1:quic_connection.cc(1587)] Client: time we began writing last sent packet: 23411410677[0923/215723:VERBOSE1:quic_connection.cc(2205)] Leaving Batch Mode.--
--
You received this message because you are subscribed to a topic in the Google Groups "QUIC Prototype Protocol Discussion group" group.
To unsubscribe from this topic, visit https://groups.google.com/a/chromium.org/d/topic/proto-quic/nDbnX3_AxPA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to proto-quic+...@chromium.org.
Hi All,I am facing the same issue of "QUIC_PROOF_INVALID" error with Android chrome version 48.0.2543.0, and the quic server code that is fetched on October 24th.
I have generated the certificates and the key using the script provided. Also, I installed the root certificate on the phone. I now don't get the " net::ERR_CERT_AUTHORITY_INVALID" error, but I get the following error:
"server: CONNECTION_CLOSE_FRAME received for connection: 8119938777658202506 with error: QUIC_PROOF_INVALID Proof invalid: Failed to verify certificate chain: net::ERR_CERT_COMMON_NAME_INVALID"
Also, the --ignore-certificate-errors flag does not seem to work with the latest chrome browser. I will appreicate any help in this regards.
I am also attaching the server output.
Hi Ryan,Thanks for your replying. It helps me a lot, and I still have some other problems:1. I would like to test the performance of the quic, and the output in quic-client really influence the test results, what can I fix? or is there some tools to measure the performance?
2. Could that quic_client run on the Windows system? if yes then how to ?
--