This repository was archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexamples_test.go
69 lines (53 loc) · 1.62 KB
/
examples_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
package httpsignatures_test
import (
"errors"
"net/http"
"github.com/quantoztechnology/go-http-signatures"
)
func Example_signing() {
r, _ := http.NewRequest("GET", "http://example.com/some-api", nil)
signer := httpsignatures.NewSigner(httpsignatures.AlgorithmHmacSha256)
// Sign using the 'Signature' header
signer.SignRequest(r, "keyId", "key")
// OR Sign using the 'Authorization' header
signer.AuthRequest(r, "keyId", "key")
http.DefaultClient.Do(r)
}
func Example_customSigning() {
signer := httpsignatures.NewSigner(
httpsignatures.AlgorithmHmacSha256,
httpsignatures.HeaderRequestTarget,
httpsignatures.HeaderDate,
"content-length",
)
r, _ := http.NewRequest("GET", "http://example.com/some-api", nil)
signer.SignRequest(r, "keyId", "key")
http.DefaultClient.Do(r)
}
func Example_verification() {
_ = func(w http.ResponseWriter, r *http.Request) {
keyLookUp := func(keyId string) (string, error) {
key := keyId
// check if keyId exists
if len(keyId) == 0 {
return "", errors.New("No keyId supplied")
}
// add check to see if keyId is allowed to access
// if all goes well:
return key, nil
}
allowedClockSkew := 300
_, err := httpsignatures.VerifyRequest(r, keyLookUp, allowedClockSkew, []string{httpsignatures.AlgorithmEd25519},
httpsignatures.HeaderRequestTarget)
if err != nil {
httpErr, msg := httpsignatures.ErrorToHTTPCode(err.Error())
if httpErr == http.StatusInternalServerError {
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
} else {
http.Error(w, msg, httpErr)
}
panic(err)
}
// request was signed correctly.
}
}