Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to encrypt SALTEDHASHED password (used by Weblogic) in java?

I need to be able to hash passwords in exactly the same way as WebLogic's authenticator does. Preferably without using WebLogic's library.

30 minutes later.. I've read some documentation and if I don't know the value of the salt I can't encrypt the password in the same way of weblogic.

So, the new question is: where weblogic stores the value of the salt? It's unique for each password or it associated one to one?

Thanks

share|improve this question

1 Answer

Where does weblogic stores the value of the salt? It's unique for each password or it associated one to one?

The value of the salt is stored in SerializedSystemIni.dat, the domain's password salt file. The salt is unique for each encrypted password. You should use weblogic.security.Encrypt...

share|improve this answer
We have deployed the application that checks user's credentials on a weblogic server and then we call the authenticate method of a class in the weblogic.lib! That's works... :| – Frengo Nov 27 '09 at 17:00
Not sure I get your comment. Maybe I missed something in the original question... – Pascal Thivent Nov 27 '09 at 17:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.