[None][doc] update readme for rpc (#9972)

Signed-off-by: Yan Chunwei <328693+Superjomn@users.noreply.github.com>
This commit is contained in:
Yan Chunwei 2025-12-15 10:16:50 +08:00 committed by GitHub
parent 4bf42f8fa8
commit 355e06d66d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,3 +83,8 @@ except RPCError as e:
# Shutdown server from client
client.shutdown_server()
```
## Network Security
The RPC supports built-in HMAC-based authentication to secure the communication between the server and the client.
To enable that, you need to provide a shared secret key (bytes) to both the `RPCServer` and `RPCClient`.