mirror of
https://github.com/python-kasa/python-kasa.git
synced 2026-09-19 20:43:52 +00:00
Add ECDHE-RSA-AES256 cipher for newer Tapo firmware (#1755)
Add ECDHE-RSA-AES256-GCM-SHA384 alongside the existing ECDHE-RSA-AES128-GCM-SHA256 suite for newer Tapo firmware, while keeping all legacy suites for backward compatibility. Tested with Tapo TC70, C530WS, and C210 cameras after firmware updates produced TLS handshake failures.
This commit is contained in:
@@ -74,6 +74,7 @@ class SslAesTransport(BaseTransport):
|
||||
CIPHERS = ":".join(
|
||||
[
|
||||
"ECDHE-RSA-AES128-GCM-SHA256",
|
||||
"ECDHE-RSA-AES256-GCM-SHA384",
|
||||
"AES256-GCM-SHA384",
|
||||
"AES256-SHA256",
|
||||
"AES128-GCM-SHA256",
|
||||
|
||||
Reference in New Issue
Block a user