1
vote
2answers
31 views
What is the correct way to store a database connection string in a config file for production environment?
Often in example code for software, I see a connection string eg. mysql://user@localhost
in the configuration file for the software to get access to the database. This seems fine for a …
0
votes
1answer
13 views
Multi User Password Manager Security Strategy
I am looking for web based, multi user password management software. I am also considering creating my own.
The basic question that comes up is, what strategy will I use for secure storage and …
0
votes
2answers
34 views
asp.net membership users with passwords and those without
I am trying to find a way to handle two types of users for an intranet system. There are users who login and there are those who do not. I need to store both types of users in the membership db. Does …
7
votes
7answers
199 views
Is forcing complex passwords “more important” than salting?
I've spent the past 2 hours reading up on salting passwords, making sure that I understood the idea. I was hoping some of you could share your knowledge on my conclusions.
Say the salts on a system …
6
votes
11answers
2k views
What’s the difference between SHA and MD5 (in PHP)?
When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
3
votes
4answers
80 views
How do I change my password in multiple Oracle databases?
Is there a tool that allows me to change my password in multiple Oracle databases?
It expires every month and I would like to change them all simultaneously.
0
votes
1answer
35 views
How do I reset password retry count for a user in the gpu using C#
Hi,
I'm using this piece of code :
// create a "principal context" - e.g. your domain (could be machine, too)
PrincipalContext pc = new PrincipalContext(ContextType.Domain, "YOURDOMAIN");
// …
3
votes
7answers
264 views
How would you add salt to your existing password hashes?
I have a database of hashed passwords that had no salt added before they were hashed. I want to add salt to new passwords. Obviously I can't re-hash the existing ones.
How would you migrate to a …
2
votes
3answers
74 views
Which hash function is currently a good choice for passwords?
Hi,
Some hash functions are today not as safe as they were some years ago. Which hash function would currently be a good choice for hashing passwords?
Thanks in advance.
20
votes
18answers
1k views
Phonetically Memorable Password Generation Algorithms
Background
While at the Gym the other day, I was working with my combination lock, and realized something that would be useful to me as a programmer. To wit, my combination is three seperate sets of …
2
votes
4answers
63 views
Active Directory
How can i get the password for a user from Active Directory
13
votes
16answers
1k views
What is the best way to check the strength of a password?
See also How do you compute password complexity?
What is the best way of ensuring that a user supplied password is a strong password in a registration or change password form?
EDIT: one idea I had …
0
votes
1answer
44 views
Has anyone used Buzz Andersen’s Simple iPhone Keychain code?
You can find it here.
I'm trying to understand his sample code in order to write a simple program with that stores passwords into the keychain and retrieves them for login. Has anyone done this …
1
vote
1answer
47 views
reusable “save credentials” dialog (like IE’s or Vista’s) in .NET or Win32
Lately I've been working in an office with a wireless network which uses an annoying authentication scheme: every few hours, you need to open up a browser and type a username/password into an …
0
votes
1answer
17 views
How to cache SSL client certificate password in client application using libcurl
We have a (multi-os) application which communicates with a https server using libcurl and uses SSL client certification. When the client certification is password protected, the application must ask …
