Commit graph

30 commits

Author SHA1 Message Date
kaygit
40be397628 Making tokens url safe to be JWT compatible
StdEncoding is used for standard base64 encoding. The base64 alphabet
includes '+', '/' and '=' characters which are not URL safe and not JWT
compatible. Furthermore padding '=' characters are added, but the JWT
defenition want it to be compact.
Using RawURLEncoding instead of StdEncoding solve this issues.
2016-07-27 16:33:22 +02:00
c7a2ea1c62 golint 2016-03-09 09:06:54 -07:00
fa924c2198 Fixed panic issue
When verifying a token from a malformed Authorization header, values
without a space would cause a panic. Thanks to
https://www.reddit.com/user/gohacker for pointing out this problem!
2016-02-18 06:15:17 -07:00
Matthew Dillon
9d3638db60 Add additional url encoded case 2015-12-01 16:54:57 -07:00
Matthew Dillon
ce0235af93 Form getter already decodes this URLs 2015-11-11 17:42:33 -07:00
6b69668616 Accept urlencoded form for authentication 2015-10-20 16:19:21 -07:00
Matthew Dillon
88ac9569ee Refactor verify 2015-09-17 15:53:10 -07:00
Matthew Dillon
7752009bbb Allow token as query param 2015-07-17 15:45:20 -08:00
Matthew Dillon
e04139dd78 Add new token method
Rename `GenerateToken` to `Authenticate`, add `CreateToken` method
2015-07-16 18:44:31 -08:00
Matthew Dillon
66ca404d84 Tack on request to verifyClaims 2015-05-26 13:22:18 -08:00
Matthew Dillon
b3e5aa96ee Ensure that authenticate only handles POST 2015-05-07 22:33:27 -08:00
Matthew Dillon
f3672c9a0c BUGFIX: claims, use value, not field name 2015-04-30 16:17:58 -08:00
Matthew Dillon
e20c94dcaa Customize identification fields 2015-04-27 12:08:34 -08:00
Matthew Dillon
774185ba9e Adding godoc badge and package comment 2015-04-21 11:11:25 -08:00
Matthew Dillon
83f2908a95 golint 2015-04-21 11:07:30 -08:00
Matthew Dillon
d4ab1e9d18 Minor cleanup 2015-04-20 16:26:35 -08:00
Matthew Dillon
26313ee041 Error handling on generate handler 2015-04-20 15:59:10 -08:00
Matthew Dillon
61507766fe Added private error handler middleware 2015-04-20 14:55:49 -08:00
Matthew Dillon
537b1ab886 No more panics 2015-04-20 07:23:46 -08:00
Matthew Dillon
82980a6bac Misc cleanup (remove unneeded return vals) 2015-04-18 15:34:42 -08:00
Matthew Dillon
9e2ad61d1c Verify claims 2015-04-18 14:36:22 -08:00
Matthew Dillon
16c379b2c9 Verify signature 2015-04-18 14:03:46 -08:00
Matthew Dillon
e0241b074f Verify header in auth handler 2015-04-18 13:33:26 -08:00
Matthew Dillon
f9557a80a3 Compute signature 2015-04-18 12:25:43 -08:00
Matthew Dillon
5d9f1a3b5f Roughed in claims 2015-04-18 11:38:44 -08:00
Matthew Dillon
c102229487 Baked in header. Consistent test verbiage. 2015-04-18 10:42:13 -08:00
Matthew Dillon
752c683a99 More explicit middleware creation 2015-04-17 16:39:58 -08:00
Matthew Dillon
e0d56f0a29 Placeholder for generating token 2015-04-17 16:08:36 -08:00
Matthew Dillon
7871c1db59 Roughing in some handlers 2015-04-17 15:30:35 -08:00
Matthew Dillon
2c1f9ce645 Initial commit 2015-04-17 13:57:45 -08:00