RE: Alternate password encyption code? [UPDATED]

2003-07-17 Thread Extance, Paul
://jaffa.sourceforge.net/documentation/security/web/ Paul Extance -Original Message- From: Extance, Paul Sent: Tuesday, June 03, 2003 11:40 AM To: 'Tomcat Users List' Cc: Extance, Paul Subject: RE: Alternate password encyption code? We've already done this as part of the Jaffa (jaffa.sourceforge.net

RE: Alternate password encyption code?

2003-06-05 Thread Jeff Sexton
the database driver JAR(s) in the same place or in /common/lib Hope this helps... Paul Extance -Original Message- From: Phil Steitz [mailto:[EMAIL PROTECTED] Sent: Saturday, May 31, 2003 9:25 AM To: Tomcat Users List Subject: Re: Alternate password encyption code? Jeff Sexton

RE: Alternate password encyption code?

2003-06-04 Thread Extance, Paul
[mailto:[EMAIL PROTECTED] Sent: Saturday, May 31, 2003 9:25 AM To: Tomcat Users List Subject: Re: Alternate password encyption code? Jeff Sexton wrote: On Thu, 29 May 2003, Raible, Matt wrote: Why don't you just have the JDBCRealm do it - add digest=SHA. I need something other than SHA, I need

Re: Alternate password encyption code?

2003-06-04 Thread John Turner
Message- From: Phil Steitz [mailto:[EMAIL PROTECTED] Sent: Saturday, May 31, 2003 9:25 AM To: Tomcat Users List Subject: Re: Alternate password encyption code? Jeff Sexton wrote: On Thu, 29 May 2003, Raible, Matt wrote: Why don't you just have the JDBCRealm do it - add digest=SHA. I need

Re: Alternate password encyption code?

2003-06-01 Thread Phil Steitz
Jeff Sexton wrote: On Thu, 29 May 2003, Raible, Matt wrote: Why don't you just have the JDBCRealm do it - add digest=SHA. I need something other than SHA, I need to use my own custom code for an encyrption method of my own that is not provided by JDBCRealm To programmatically do it using

RE: Alternate password encyption code?

2003-05-30 Thread Raible, Matt
Here's how I do it - and I generally use SHA as my algorithm: /** * Encode a string using algorithm specified in web.xml and return the * resulting encrypted password. If exception, the plain credentials * string is returned * * @param password Password or other

RE: Alternate password encyption code?

2003-05-30 Thread Jeff Sexton
On Thu, 29 May 2003, Raible, Matt wrote: Here's how I do it - and I generally use SHA as my algorithm: Thanks, but my question is really related to the setup - I have the code I want to use for the encyrption, but I'm not sure how to tie it in with the existing JDBCRealm mechanism. How did

RE: Alternate password encyption code?

2003-05-30 Thread Jeff Sexton
On Thu, 29 May 2003, Raible, Matt wrote: Why don't you just have the JDBCRealm do it - add digest=SHA. I need something other than SHA, I need to use my own custom code for an encyrption method of my own that is not provided by JDBCRealm To programmatically do it using form-based