mirror of
				https://github.com/advplyr/audiobookshelf.git
				synced 2025-10-27 11:18:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			684 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			684 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
//
 | 
						|
// used by jsonwebtoken
 | 
						|
// Source: https://github.com/auth0/node-jws
 | 
						|
//
 | 
						|
 | 
						|
/*global exports*/
 | 
						|
var SignStream = require('./lib/sign-stream');
 | 
						|
var VerifyStream = require('./lib/verify-stream');
 | 
						|
 | 
						|
var ALGORITHMS = [
 | 
						|
  'HS256', 'HS384', 'HS512',
 | 
						|
  'RS256', 'RS384', 'RS512',
 | 
						|
  'PS256', 'PS384', 'PS512',
 | 
						|
  'ES256', 'ES384', 'ES512'
 | 
						|
];
 | 
						|
 | 
						|
exports.ALGORITHMS = ALGORITHMS;
 | 
						|
exports.sign = SignStream.sign;
 | 
						|
exports.verify = VerifyStream.verify;
 | 
						|
exports.decode = VerifyStream.decode;
 | 
						|
exports.isValid = VerifyStream.isValid;
 | 
						|
exports.createSign = function createSign(opts) {
 | 
						|
  return new SignStream(opts);
 | 
						|
};
 | 
						|
exports.createVerify = function createVerify(opts) {
 | 
						|
  return new VerifyStream(opts);
 | 
						|
}; |