View | Details | Raw Unified | Return to bug 220219
Collapse All | Expand All

(-)devel/go-jwt/Makefile (+20 lines)
Line 0 Link Here
1
# $FreeBSD$
2
3
PORTNAME=	jwt
4
PORTVERSION=	3.0.0
5
DISTVERSIONPREFIX=	v
6
CATEGORIES=	devel
7
PKGNAMEPREFIX=	go-
8
9
MAINTAINER=	iscandr@gmail.com
10
COMMENT=	Go implementation of JSON Web Tokens
11
12
LICENSE=	MIT
13
14
USE_GITHUB=	yes
15
GH_ACCOUNT=	dgrijalva
16
GH_PROJECT=	jwt-go
17
USES=	go
18
GO_PKGNAME=	github.com/${GH_ACCOUNT}/${GH_PROJECT}
19
20
.include <bsd.port.mk>
(-)devel/go-jwt/distinfo (+3 lines)
Line 0 Link Here
1
TIMESTAMP = 1498177653
2
SHA256 (dgrijalva-jwt-go-v3.0.0_GH0.tar.gz) = af12bdfbfb897c4a5c86aeffd11cab35ee18ab0180b1a6e22e1a1a61d9f70543
3
SIZE (dgrijalva-jwt-go-v3.0.0_GH0.tar.gz) = 33451
(-)devel/go-jwt/pkg-descr (+7 lines)
Line 0 Link Here
1
JSON Web Token (JWT) is an open standard (RFC 7519) that defines a compact and
2
self-contained way for securely transmitting information between parties as a
3
JSON object.
4
5
This library supports the parsing and verification as well as the generation
6
and signing of JWTs. Current supported signing algorithms are HMAC SHA, RSA,
7
RSA-PSS, and ECDSA, though hooks are present for adding your own.
(-)devel/go-jwt/pkg-plist (+47 lines)
Line 0 Link Here
1
%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
2
%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
3
%%GO_SRCDIR%%/%%GO_PKGNAME%%/MIGRATION_GUIDE.md
4
%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md
5
%%GO_SRCDIR%%/%%GO_PKGNAME%%/VERSION_HISTORY.md
6
%%GO_SRCDIR%%/%%GO_PKGNAME%%/claims.go
7
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/jwt/README.md
8
%%GO_SRCDIR%%/%%GO_PKGNAME%%/cmd/jwt/app.go
9
%%GO_SRCDIR%%/%%GO_PKGNAME%%/doc.go
10
%%GO_SRCDIR%%/%%GO_PKGNAME%%/ecdsa.go
11
%%GO_SRCDIR%%/%%GO_PKGNAME%%/ecdsa_test.go
12
%%GO_SRCDIR%%/%%GO_PKGNAME%%/ecdsa_utils.go
13
%%GO_SRCDIR%%/%%GO_PKGNAME%%/errors.go
14
%%GO_SRCDIR%%/%%GO_PKGNAME%%/example_test.go
15
%%GO_SRCDIR%%/%%GO_PKGNAME%%/hmac.go
16
%%GO_SRCDIR%%/%%GO_PKGNAME%%/hmac_example_test.go
17
%%GO_SRCDIR%%/%%GO_PKGNAME%%/hmac_test.go
18
%%GO_SRCDIR%%/%%GO_PKGNAME%%/http_example_test.go
19
%%GO_SRCDIR%%/%%GO_PKGNAME%%/map_claims.go
20
%%GO_SRCDIR%%/%%GO_PKGNAME%%/none.go
21
%%GO_SRCDIR%%/%%GO_PKGNAME%%/none_test.go
22
%%GO_SRCDIR%%/%%GO_PKGNAME%%/parser.go
23
%%GO_SRCDIR%%/%%GO_PKGNAME%%/parser_test.go
24
%%GO_SRCDIR%%/%%GO_PKGNAME%%/request/doc.go
25
%%GO_SRCDIR%%/%%GO_PKGNAME%%/request/extractor.go
26
%%GO_SRCDIR%%/%%GO_PKGNAME%%/request/extractor_example_test.go
27
%%GO_SRCDIR%%/%%GO_PKGNAME%%/request/extractor_test.go
28
%%GO_SRCDIR%%/%%GO_PKGNAME%%/request/oauth2.go
29
%%GO_SRCDIR%%/%%GO_PKGNAME%%/request/request.go
30
%%GO_SRCDIR%%/%%GO_PKGNAME%%/request/request_test.go
31
%%GO_SRCDIR%%/%%GO_PKGNAME%%/rsa.go
32
%%GO_SRCDIR%%/%%GO_PKGNAME%%/rsa_pss.go
33
%%GO_SRCDIR%%/%%GO_PKGNAME%%/rsa_pss_test.go
34
%%GO_SRCDIR%%/%%GO_PKGNAME%%/rsa_test.go
35
%%GO_SRCDIR%%/%%GO_PKGNAME%%/rsa_utils.go
36
%%GO_SRCDIR%%/%%GO_PKGNAME%%/signing_method.go
37
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/ec256-private.pem
38
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/ec256-public.pem
39
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/ec384-private.pem
40
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/ec384-public.pem
41
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/ec512-private.pem
42
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/ec512-public.pem
43
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/helpers.go
44
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/hmacTestKey
45
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/sample_key
46
%%GO_SRCDIR%%/%%GO_PKGNAME%%/test/sample_key.pub
47
%%GO_SRCDIR%%/%%GO_PKGNAME%%/token.go

Return to bug 220219