
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Tender provides a mechanism for single sign-on known as Multipass. Multipass uses an AES encrypted JSON hash and node-multipass provides functions for encoding and decoding these tokens.
More details on Multipass can be found here.
npm install multipass
Multipass is constructed with two arguments: an API key and a site key. These keys can be found within the Tender admin (Accounts & Settings > Extras > Single Sign-On).
var Multipass = require('multipass');
// Construct the Multipass encoder / decoder
var multipass = new Multipass('API-KEY', 'SITE-KEY');
// Encode a Multipass token
var token = multipass.encode({ email: 'test@example.com', name: 'test', expires: '2011-07-06 23:28:40Z' });
// Decode a Multipass token
var obj = multipass.decode(token);
This function encodes the required obj
argument. This argument is a JavaScript object and contains the data that you want to pass to Tender. A list of expected keys can be found here.
This function will return a string. If an error occurs, the undefined
will be returned.
This function decodes the required token
argument. This argument is an encoded Multipass token and a JavaScript object is returned. If decoding is not successful, undefined
is returned.
FAQs
Encode and decode Tender Multipass tokens
The npm package multipass receives a total of 59 weekly downloads. As such, multipass popularity was classified as not popular.
We found that multipass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.