Looks interesting, but I might be missing something here, what actually is it? Why does it need the service and a password, isn't it generating a password? And how is it cross-platform, it looks like it's web based?
Probably didn't make it clear enough, it's repeatable so you'd use Twitter as the service and whatever password you usually use (master password), it'd come back with a hash and you use that as your Twitter password. Whenever you need your Twitter password, you repeat the process. https://github.com/simontabor/pw - it's got node-webkit so there's a mac app in that repo and should also work on Windows + Linux nicely (…
Show HN: PW - Simple, secure & cross-platform password generator
11–17 of 17 posts
Re: Show HN: PW - Simple, secure & cross-platform password generator
#12Earlier quoted context omitted.
I don't want everyone to know the length of my password that's for sure.
Sounds like you've misunderstood the purpose of this. I usually just use a single password across most services, so they all know your password, even if you trust them not to store it in plain text. It's infinitely more secure to use something like PW, never entering your main/master password into any other services and then have a generated hash that really means nothing to anyone (can't be decoded or anything stupi…
How would you randomise the length of the password in a repeatable + secure manner?
Re: Show HN: PW - Simple, secure & cross-platform password generator
#13This is a quick alternative that should work on Mac OS and Linux, and Windows when openssl has been installed in a similar way.
Re: Show HN: PW - Simple, secure & cross-platform password generator
#14Earlier quoted context omitted.
I don't want everyone to know the length of my password that's for sure.
To be fair, although I really dislike the idea of fixed length passwords, with this many characters it's not too bad. A full search of the password space that this outputs would take ~10^50 years at the moment, on high end hardware, and shouldn't be susceptible to attacks on patterns, assuming SHA is working properly. One thing I would say is that with something like this you might as well just remember a really long…
Re: Show HN: PW - Simple, secure & cross-platform password generator
#15Earlier quoted context omitted.
Probably didn't make it clear enough, it's repeatable so you'd use Twitter as the service and whatever password you usually use (master password), it'd come back with a hash and you use that as your Twitter password. Whenever you need your Twitter password, you repeat the process. https://github.com/simontabor/pw - it's got node-webkit so there's a mac app in that repo and should also work on Windows + Linux nicely (…
It's a nice touch to provide a local application to run as there is no way people should be doing this in the browser. You might want to remove the tracking from the local app though, even if it is for analytics purposes, I don't want something that deals with passwords like this to be phoning home.
Re: Show HN: PW - Simple, secure & cross-platform password generator
#16Earlier quoted context omitted.
Sounds like you've misunderstood the purpose of this. I usually just use a single password across most services, so they all know your password, even if you trust them not to store it in plain text. It's infinitely more secure to use something like PW, never entering your main/master password into any other services and then have a generated hash that really means nothing to anyone (can't be decoded or anything stupi…
Yes, but it's by far the lesser of two evils. You can easily take a substring of the generated password. How would you randomise the length of the password in a repeatable + secure manner?
There is a reason passwords like 'the old lemon man jumped high as a pokemon' are getting more popular.
Re: Show HN: PW - Simple, secure & cross-platform password generator
#17Earlier quoted context omitted.
Sounds like you've misunderstood the purpose of this. I usually just use a single password across most services, so they all know your password, even if you trust them not to store it in plain text. It's infinitely more secure to use something like PW, never entering your main/master password into any other services and then have a generated hash that really means nothing to anyone (can't be decoded or anything stupi…
Yes, but it's by far the lesser of two evils. You can easily take a substring of the generated password. How would you randomise the length of the password in a repeatable + secure manner?
You could easily just use 'servicename||this is my secure password' as your password, but it's still obvious what the pattern is to anyone who obtains that password, rather than getting 404fC7C426Cb6cD694E6C2Ee828c133fA771AcC8. You should be able to leave your password and email address in public places without anyone being able to have any significant effect on your security (they might gain access to one service).