2176fe90d5
Merge pull request #1 from kaygit/generate-url-safe-tokens
...
Making tokens url safe to be JWT compatible
2016-07-28 22:09:56 -07:00
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
0c914e9b3a
Update license
2016-03-09 09:07:37 -07:00
c7a2ea1c62
golint
2016-03-09 09:06:54 -07:00
92f2107635
Clarification in README
2016-02-18 06:19:53 -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
f0a0af1c1f
Show without token
2015-05-07 22:44:29 -08:00
Matthew Dillon
b2a08873db
Add header details
2015-05-07 22:43:03 -08:00
Matthew Dillon
e7a6f45cde
Example details
2015-05-07 22:40:43 -08:00
Matthew Dillon
b3e5aa96ee
Ensure that authenticate only handles POST
2015-05-07 22:33:27 -08:00
Matthew Dillon
e80c34437b
Beef up example
2015-05-07 22:33:03 -08:00
Matthew Dillon
1d3c39bb49
Refactor example
2015-04-30 16:19:14 -08:00
Matthew Dillon
f3672c9a0c
BUGFIX: claims, use value, not field name
2015-04-30 16:17:58 -08:00
Matthew Dillon
03fbde5af3
Minor cleanup/formatting
...
Added brief documentation for fieldname feature
2015-04-28 08:31:12 -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
dc58eb70a2
GH syntax highlighting
2015-04-21 09:59:43 -08:00
Matthew Dillon
11c03db65e
Updating readme
2015-04-21 09:55:21 -08:00
Matthew Dillon
ee46a66b75
Adding readme
2015-04-20 16:30:30 -08:00
Matthew Dillon
c6aae2ee05
Adding license
2015-04-20 16:29:57 -08:00
Matthew Dillon
d4ab1e9d18
Minor cleanup
2015-04-20 16:26:35 -08:00
Matthew Dillon
146c8257ed
Add unprotected route example
2015-04-20 16:12:24 -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
273383cf89
Added an example
2015-04-18 15:17:48 -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
1dec4498b0
Test auth function
2015-04-18 10:22:04 -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