mosquito / aio-pika

AMQP 0.9 client designed for asyncio and humans.
https://aio-pika.readthedocs.org/
Apache License 2.0
1.18k stars 186 forks source link

Compatibility with TLSv1.3 #621

Closed gianlucadecola closed 3 months ago

gianlucadecola commented 4 months ago

Hi, I am using aio-pika in a project and for security requirements I'll need to have TLS enabled. In particular I'll need to work with TLSv1.3 but searching in the documentation (also in aiormq) I cannot find if this TLS version is specifically supported. Can I get some hint on that?

Thanks guys :+1:

mosquito commented 4 months ago

This is not a library choice, but a context configured in the user code via passing ssl context.

gianlucadecola commented 4 months ago

Oh good to know, thank you!