Autentication with digest password(Urgent!)

2002-03-07 Thread Galbayar

I setup Tomcat 4.0.3 on Win2000 with JDBCRealm and a mysql-database. Using plain 
passwords, everything works fine. But I would like digest my password in the database. 
how to make this? can u give me step by step tutorial?

Thank in advance




Re: Autentication with digest password(Urgent!)

2002-03-07 Thread Joaquín Sánchez Jiménez

Hi:

Use java.security API.

Supposing my_password is a string:

MessageDigest disgest = MessageDigest.getInstance(MD5);
byte[] pwd_digest = digest.digest(my_password.getBytes());

You have my_password digested in pwd_digest.

Bye.

Joaquín.

- Original Message -
From: Galbayar [EMAIL PROTECTED]
To: Tomcat Users List [EMAIL PROTECTED]
Sent: Thursday, March 07, 2002 10:42 AM
Subject: Autentication with digest password(Urgent!)


I setup Tomcat 4.0.3 on Win2000 with JDBCRealm and a mysql-database. Using
plain passwords, everything works fine. But I would like digest my password
in the database. how to make this? can u give me step by step tutorial?

Thank in advance


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Autentication with digest password(Urgent!)

2002-03-07 Thread Christian Froehler

In the tomcat 3.3 documentation, there is a JDBCRealm-howto that also 
describes how to use digested passwords. I don't know if this is still 
working for tomcat4?

http://jakarta.apache.org/tomcat/tomcat-3.3-doc/JDBCRealm-howto.html

Christian

Galbayar wrote:

I setup Tomcat 4.0.3 on Win2000 with JDBCRealm and a mysql-database. Using plain 
passwords, everything works fine. But I would like digest my password in the 
database. how to make this? can u give me step by step tutorial?

Thank in advance






--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]