···1010// The contents of this file have been borrowed from here: https://github.com/orthanc/bluesky-go-feeds/blob/f719f113f1afc9080e50b4b1f5ca239aa3073c79/web/auth.go#L20-L46
1111// It essentially allows the signing method that atproto uses for JWT to be used when verifying the JWT that they send in requests
12121313+const (
1414+ ES256K = "ES256K"
1515+ ES256 = "ES256"
1616+)
1717+1318type AtProtoSigningMethod struct {
1419 alg string
1520}