https://github.com/mariotaku/steamlink.py
https://github.com/mariotaku/steamlink.py
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mariotaku/steamlink.py
- Owner: mariotaku
- Created: 2022-02-03T07:17:26.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-09T13:06:58.000Z (about 3 years ago)
- Last Synced: 2025-02-25T14:50:24.985Z (2 months ago)
- Language: Python
- Size: 118 KB
- Stars: 21
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Reference Implementation for SteamLink Protocol
## Encryption & Decryption
### Symmetric Encryption
See [symmetric_encrypt_with_iv](https://github.com/mariotaku/steamlink.py/blob/acecffc9b5153f6b8074785c539c2b7d162bbced/service/ccrypto.py#L14)
### Symmetric Decryption
See [symmetric_decrypt_with_iv](https://github.com/mariotaku/steamlink.py/blob/acecffc9b5153f6b8074785c539c2b7d162bbced/service/ccrypto.py#L31)
### Asymmetric Encryption
See [symmetric_encrypt_with_iv](https://github.com/mariotaku/steamlink.py/blob/acecffc9b5153f6b8074785c539c2b7d162bbced/service/ccrypto.py#L14)
## Discovery Protocol
See [service/README.md](https://github.com/mariotaku/steamlink.py/tree/master/service)
## Session Protocol
See [session/README.md](https://github.com/mariotaku/steamlink.py/tree/master/session)