From e68a30469834cb3537f346112c47049e312b519e Mon Sep 17 00:00:00 2001 From: Alex X Date: Thu, 30 Nov 2023 15:51:43 +0300 Subject: [PATCH] Add about new tapo password to readme --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 334eacd3..6a9a284c 100644 --- a/README.md +++ b/README.md @@ -514,13 +514,21 @@ streams: - stream quality is the same as [RTSP protocol](https://www.tapo.com/en/faq/34/) - use the **cloud password**, this is not the RTSP password! you do not need to add a login! - you can also use UPPERCASE MD5 hash from your cloud password with `admin` username +- some new camera firmwares requires SHA256 instead of MD5 ```yaml streams: # cloud password without username camera1: tapo://cloud-password@192.168.1.123 # admin username and UPPERCASE MD5 cloud-password hash - camera2: tapo://admin:MD5-PASSWORD-HASH@192.168.1.123 + camera2: tapo://admin:UPPERCASE-MD5@192.168.1.123 + # admin username and UPPERCASE SHA256 cloud-password hash + camera3: tapo://admin:UPPERCASE-SHA256@192.168.1.123 +``` + +```bash +echo -n "cloud password" | md5 | awk '{print toupper($0)}' +echo -n "cloud password" | shasum -a 256 | awk '{print toupper($0)}' ``` #### Source: Kasa