소스 검색

Add some details to zeroconf authentication

Paul Lietar 9 년 전
부모
커밋
cf57274f9c
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      docs/authentication.md

+ 3 - 0
docs/authentication.md

@@ -28,6 +28,9 @@ blob used to authenticate with Spotify's servers.
 The blob is decrypted using the following algorithm.
 
 ```
+# encrypted_blob is the blob sent by the controller, decoded using base64
+# shared_secret is the result of the DH key exchange
+
 IV = encrypted_blob[:0x10]
 expected_mac = encrypted_blob[-0x14:]
 encrypted = encrypted_blob[0x10:-0x14]