type rawJSONWebSignature …
type rawSignatureInfo …
type JSONWebSignature …
type Signature …
func ParseSigned(signature string) (*JSONWebSignature, error) { … }
func ParseDetached(signature string, payload []byte) (*JSONWebSignature, error) { … }
func (sig Signature) mergedHeaders() rawHeader { … }
func (obj JSONWebSignature) computeAuthData(payload []byte, signature *Signature) ([]byte, error) { … }
func parseSignedFull(input string) (*JSONWebSignature, error) { … }
func (parsed *rawJSONWebSignature) sanitized() (*JSONWebSignature, error) { … }
func parseSignedCompact(input string, payload []byte) (*JSONWebSignature, error) { … }
func (obj JSONWebSignature) compactSerialize(detached bool) (string, error) { … }
func (obj JSONWebSignature) CompactSerialize() (string, error) { … }
func (obj JSONWebSignature) DetachedCompactSerialize() (string, error) { … }
func (obj JSONWebSignature) FullSerialize() string { … }