passport-saml-encrypted
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -40,3 +40,4 @@ var zlib = require('zlib'); | ||
var uniqueID = ""; | ||
for (var i = 0; i < 20; i++) { | ||
var idLength = (Math.floor(Math.random() * 9)) + 32 | ||
for (var i = 0; i < idLength; i++) { | ||
uniqueID += chars.substr(Math.floor((Math.random()*15)), 1); | ||
@@ -43,0 +44,0 @@ } |
{ | ||
"name": "passport-saml-encrypted", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "A Passport strategy for handling encrypted SAML authentication responses", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
25288
435