You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expiresIn: {isValid: function(value){returnisInteger(value)||(isString(value)&&value);},message: '"expiresIn" should be a number of seconds or string representing a timespan'},
13
19
notBefore: {isValid: function(value){returnisInteger(value)||(isString(value)&&value);},message: '"notBefore" should be a number of seconds or string representing a timespan'},
14
20
audience: {isValid: function(value){returnisString(value)||Array.isArray(value);},message: '"audience" must be a string or array'},
15
-
algorithm: {isValid: includes.bind(null,['RS256','RS384','RS512','ES256','ES384','ES512','HS256','HS384','HS512','none']),message: '"algorithm" must be a valid string enum value'},
21
+
algorithm: {isValid: includes.bind(null,SUPPORTED_ALGS),message: '"algorithm" must be a valid string enum value'},
16
22
header: {isValid: isPlainObject,message: '"header" must be an object'},
17
23
encoding: {isValid: isString,message: '"encoding" must be a string'},
18
24
issuer: {isValid: isString,message: '"issuer" must be a string'},
0 commit comments