Create a stable network identifier from SSID
(self, ssid: str)
| 167 | return "default_network" |
| 168 | |
| 169 | def create_network_id(self, ssid: str) -> str: |
| 170 | """Create a stable network identifier from SSID""" |
| 171 | # Create a hash-based ID that's stable but doesn't expose the actual SSID |
| 172 | network_hash = hashlib.md5(ssid.encode()).hexdigest()[:8] |
| 173 | return f"net_{network_hash}" |
| 174 | |
| 175 | def update_network_context(self): |
| 176 | """Update current network context and handle network changes""" |
no test coverage detected