You've already forked oauth2-proxy
mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2026-05-22 10:15:21 +02:00
922 B
922 B
layout, title, permalink, nav_order
| layout | title | permalink | nav_order |
|---|---|---|---|
| default | Request Signatures | /request-signatures | 6 |
Request signatures
If signature_key is defined, proxied requests will be signed with the
GAP-Signature header, which is a Hash-based Message Authentication Code
(HMAC)
of selected request information and the request body see SIGNATURE_HEADERS
in oauthproxy.go.
signature_key must be of the form algorithm:secretkey, (ie: signature_key = "sha1:secret0")
For more information about HMAC request signature validation, read the following: