You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Address review feedback: fix logging, cleanup dead config, improve docs
- Downgrade EC ID/IP log statements from debug to trace to prevent
sensitive data appearing in production logs (edge_cookie.rs)
- Fix .change_context indentation in HMAC error handling
- Remove unused counter_store and opid_store fields from EdgeCookie
config struct, all test fixtures, TOML configs, and documentation
- Add serialization test asserting ec_fresh wire field name
- Fix edge-cookies.md config section reference and consent language
- Update error-reference.md to reflect HMAC-based generation
- Update configuration.md to remove dead KV store field docs
Copy file name to clipboardExpand all lines: docs/guide/edge-cookies.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,14 +20,14 @@ EC IDs use HMAC (Hash-based Message Authentication Code) to generate a determini
20
20
21
21
## Configuration
22
22
23
-
Configure EC secrets in `trusted-server.toml`. See the full [Configuration Reference](/guide/configuration) for the `ec` section and environment variable overrides.
23
+
Configure EC secrets in `trusted-server.toml`. See the full [Configuration Reference](/guide/configuration) for the `[edge_cookie]` section and environment variable overrides.
24
24
25
25
## Privacy Considerations
26
26
27
-
- IDs are only generated with explicit user consent
28
-
- No personally identifiable information (PII) is included
27
+
-EC IDs are generated deterministically from the client IP, but the cookie is only set when storage consent is present
28
+
- No personally identifiable information (PII) is stored in the ID
0 commit comments