# Functions
SJWTBase64DecodeBytes takes in a base 64 encoded string and returns the actual bytes array or an error of it fails to decode the string.
SJWTBase64DecodeString takes in a base 64 encoded string and returns the actual string or an error of it fails to decode the string.
SJWTBase64EncodeBytes encode bytes array to base64 with padding stripped.
SJWTBase64EncodeString encode string to base64 with padding stripped.
SJWTCheckFullIdentity - implements the verify of identity.
SJWTCheckFullIdentityURL - implements the verify of identity using URL.
SJWTCheckIdentity - implements the verify of identity.
SJWTDecodeWithPubKey - decode JWT string.
SJWTEncode - encode payload to JWT.
SJWTEncodeText - encode header and payload to JWT.
SJWTGetIdentity --.
SJWTGetURLContent --.
SJWTGetValidPayload --.
SJWTParseECPrivateKeyFromPEM Parse PEM encoded Elliptic Curve Private Key Structure.
SJWTParseECPublicKeyFromPEM Parse PEM encoded PKCS1 or PKCS8 public key.
SJWTRemoveWhiteSpaces --.
SJWTSignWithPrvKey - implements the signing For this signing method, key must be an ecdsa.PrivateKey struct.
SJWTVerifyWithPubKey - implements the verify For this verify method, key must be an ecdsa.PublicKey struct.
# Structs
SJWTDest --.
SJWTHeader - header for JWT.
SJWTOrig --.
SJWTPayload - JWT payload.