| getJwtBuilder | 
                    JWTManager.getJwtBuilder( ) | 
                    Returns a JWT builder to build a JWT (JSON Web Token) | 
                  
                  
                    | parseJWE | 
                    JWTManager.parseJWE( jwtToken , secretKey ) | 
                    Read JWE strings, decrypt JWE using a supplied SecretKey. | 
                  
                  
                    | parseJWEtoJWT | 
                    JWTManager.parseJWEtoJWT( jwtToken , secretKey ) | 
                    Read JWT strings, decrypt JWE using a supplied SecretKey. | 
                  
                  
                    | parseJWS | 
                    JWTManager.parseJWS( jwtToken ) | 
                    Read JWT strings, used to convert them into a JWT object representing the expanded JWT. | 
                  
                  
                    | parseJWT | 
                    JWTManager.parseJWT( jwtToken ) | 
                    Parse JWT strings, used to convert them into a JWT object representing the expanded JWT. |