Versions in this module Expand all Collapse all v0 v0.0.1 Mar 30, 2015 Changes in this version + var ErrBasicAuth = errors.New("echo: basic auth error") + var ErrJwtAuth = errors.New("echo: jwt auth error") + func BasicAuth(ah AuthorizedHandler, uah UnauthorizedHandler, fn BasicAuthFunc) echo.HandlerFunc + func JwtAuth(ah AuthorizedHandler, uah UnauthorizedHandler, fn JwtKeyFunc) echo.HandlerFunc + func Logger(h echo.HandlerFunc) echo.HandlerFunc + type AuthorizedHandler echo.HandlerFunc + type BasicAuthFunc func(string, string) bool + type Claims map[string]interface + type JwtKeyFunc func(string) ([]byte, error) + type UnauthorizedHandler func(*echo.Context, error)