(state: string)
| 16 | const logger = createLogger('McpOauthStorage') |
| 17 | |
| 18 | function hashState(state: string): string { |
| 19 | return createHash('sha256').update(state).digest('hex') |
| 20 | } |
| 21 | |
| 22 | const STATE_TTL_MS = 10 * 60 * 1000 |
| 23 |
no outgoing calls
no test coverage detected