jws - ActiveState ActiveGo 1.8
...

Package jws

import "golang.org/x/oauth2/jws"
Overview
Index

Overview ▾

Package jws provides a partial implementation of JSON Web Signature encoding and decoding. It exists to support the golang.org/x/oauth2 package.

See RFC 7515.

Deprecated: this package is not intended for public use and might be removed in the future. It exists for internal use only. Please switch to another JWS package or copy this package into your own source tree.

func Encode

func Encode(header *Header, c *ClaimSet, key *rsa.PrivateKey) (string, error)

Encode encodes a signed JWS with provided header and claim set. This invokes EncodeWithSigner using crypto/rsa.SignPKCS1v15 with the given RSA private key.

func EncodeWithSigner

func EncodeWithSigner(header *Header, c *ClaimSet, sg Signer) (string, error)

EncodeWithSigner encodes a header and claim set with the provided signer.

func Verify

func Verify(token string, key *rsa.PublicKey) error

Verify tests whether the provided JWT token's signature was produced by the private key associated with the supplied public key.

type ClaimSet

ClaimSet contains information about the JWT signature including the permissions being requested (scopes), the target of the token, the issuer, the time the token was issued, and the lifetime of the token.

type ClaimSet struct {
    Iss   string `json:"iss"`             // email address of the client_id of the application making the access token request
    Scope string `json:"scope,omitempty"` // space-delimited list of the permissions the application requests
    Aud   string `json:"aud"`             // descriptor of the intended target of the assertion (Optional).
    Exp   int64  `json:"exp"`             // the expiration time of the assertion (seconds since Unix epoch)
    Iat   int64  `json:"iat"`             // the time the assertion was issued (seconds since Unix epoch)
    Typ   string `json:"typ,omitempty"`   // token type (Optional).

    // Email for which the application is requesting delegated access (Optional).
    Sub string `json:"sub,omitempty"`

    // The old name of Sub. Client keeps setting Prn to be
    // complaint with legacy OAuth 2.0 providers. (Optional)
    Prn string `json:"prn,omitempty"`

    // See http://tools.ietf.org/html/draft-jones-json-web-token-10#section-4.3
    // This array is marshalled using custom code (see (c *ClaimSet) encode()).
    PrivateClaims map[string]interface{} `json:"-"`
}

func Decode

func Decode(payload string) (*ClaimSet, error)

Decode decodes a claim set from a JWS payload.

Header represents the header for the signed JWS payloads.

type Header struct {
    // The algorithm used for signature.
    Algorithm string `json:"alg"`

    // Represents the token type.
    Typ string `json:"typ"`

    // The optional hint of which key is being used.
    KeyID string `json:"kid,omitempty"`
}

type Signer

Signer returns a signature for the given data.

type Signer func(data []byte) (sig []byte, err error)