If I need't a secure data. Can I use TLS without QUIC? Why must use TLS with QUIC?
Thanks.
If I need't a secure data. Can I use TLS without QUIC? Why must use TLS with QUIC?
Thanks.
I assume you meant:
Can I use QUIC without TLS?
Yes and no.
Both RFC 9000 and RFC 9001 (the QUIC standard) require QUIC to be secure, and through TLS. And it is highly unlikely you will see a QUIC server on the internet that is not encrypted.
But what exactly is stopping you from doing whatever you want? In particular using QUIC without encryption? In fact there already are implementations that allow it.
That being said, I encourage you to actually always use encryption, even for testing or development. It is a good practice. Because it is mandatory for production (otherwise it is not safe, unless you use it in a weird setup like locally without network), and it is a good idea to keep different envs as close to each other as possible. In order to avoid subtle issues.