UNPKG
passport-wsfed-saml2
Version:
latest (4.6.4)
4.6.4
4.6.3
4.6.1
4.6.0
4.5.1
4.5.0
4.4.0
4.3.0
4.2.0
4.1.0
4.0.1
4.0.0
3.0.17
3.0.16
3.0.15
3.0.14
3.0.13
3.0.12
3.0.11
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.13.0
2.12.0
2.11.6
2.11.5
2.11.4
2.11.3
2.11.2
2.11.1
2.11.0
2.10.0
2.9.0
2.8.0
2.7.0
2.6.0
2.5.1
2.5.0
2.4.0
2.3.0
2.2.1
2.2.0
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.0
1.1.0
1.0.1
1.0.0
0.19.0
0.18.0
0.17.0
0.16.1
0.16.0
0.15.0
0.14.0
0.13.2
0.13.1
0.13.0
0.12.0
0.11.0
0.10.1
0.10.0
0.9.0
0.8.9
0.8.8
0.8.7
0.8.6
0.8.3
0.8.2
0.8.1
0.8.0
0.7.1
0.6.1
0.6.0
0.5.0
0.3.12
0.3.11
0.3.10
0.3.9
0.3.8
0.3.7
0.3.6
0.3.5
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0
SAML2 Protocol and WS-Fed library
github.com/auth0/passport-wsfed-saml2
auth0/passport-wsfed-saml2
passport-wsfed-saml2
/
lib
/
passport-wsfed-saml2
/
state
/
null.js
13 lines
(9 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
function
NullStore
(
options
) { }
NullStore
.
prototype
.
store
=
function
(
req, cb
) {
cb
(); };
NullStore
.
prototype
.
verify
=
function
(
req, providedState, cb
) {
cb
(
null
,
true
); };
module
.
exports
=
NullStore
;