Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix to allow passwords that contains colons #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

blevine
Copy link

@blevine blevine commented Jan 21, 2014

Fixes #20

@OliverJAsh
Copy link

Any updates on this? Still having to manually encode in my app.

@lordgraysith
Copy link

👍

var userid = credentials[0];
var password = credentials[1];
var password = credentials.slice(1).join(':');
Copy link

@FlorianSW FlorianSW Jun 12, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you should use split() (in L77) with a limit (second parameter), which would avoid the need to workaround the problem in this way.

Copy link

@FlorianSW FlorianSW left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see inline-comment

@FlorianSW
Copy link

@blevine Are you planning to work on this PR? If not, I would open a new one with your changes and hope that @jaredhanson merges it? :)

@blevine
Copy link
Author

blevine commented Jul 6, 2017

@FlorianSW No, I'm not planning to work on this at this time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BASIC strategy does not support passwords that contain colons
4 participants