Re: [OT] Re: Java method equal to perl crypt()?

2002-12-06 Thread Reinhard Moosauer
a basic, C, C++ or Pascal version to Java. Seek with Google, -AAron From: Galbayar Dorjgotov [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: TomCat Users [EMAIL PROTECTED] Subject: Java method equal to perl crypt()? Date: Thu, 28 Nov 2002 17:33:45 +0800 Ok, I have

RE: [OT] Re: Java method equal to perl crypt()?

2002-12-06 Thread Ralph Einfeldt
, the system has to do a lot of password encryptions. -Original Message- From: Reinhard Moosauer [mailto:[EMAIL PROTECTED]] Sent: Friday, December 06, 2002 3:44 PM To: Tomcat Users List Subject: Re: [OT] Re: Java method equal to perl crypt()? snip/ String crypt_cmdary[] = { /usr/bin

RE: Java method equal to perl crypt()?

2002-12-06 Thread Ralph Einfeldt
: Thursday, November 28, 2002 10:34 AM To: TomCat Users Subject: Java method equal to perl crypt()? Ok, I have an existing MySQL database that has user's passwords stored that were encrypted using the Perl crypt() function. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

RE: [OT] Re: Java method equal to perl crypt()?

2002-12-02 Thread Gudipati, Arvind
You can use the java cryptography (JCE) package from Sun. its also part of JRE 1.4 ! -Original Message- From: AAron nAAs [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 28, 2002 12:37 PM To: [EMAIL PROTECTED] Subject: [OT] Re: Java method equal to perl crypt()? Although off topic

Java method equal to perl crypt()?

2002-11-28 Thread Galbayar Dorjgotov
Ok, I have an existing MySQL database that has user's passwords stored that were encrypted using the Perl crypt() function. I was wondering what the best way to re-use this database using JSP. I know enough Java to get most functionality working, and I can already connect to and read/write to

RE: Java method equal to perl crypt()?

2002-11-28 Thread Varley, Roger
The only problem I have is if I migrate to JSP, how can I compare passwords that are supplied in the JSP page to the password in the DB that was stored via the Perl crypt() function? Assuming that the Perl crypt() function is an implementation of the Unix crypt command then try either

[OT] Re: Java method equal to perl crypt()?

2002-11-28 Thread AAron nAAs
From: Galbayar Dorjgotov [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: TomCat Users [EMAIL PROTECTED] Subject: Java method equal to perl crypt()? Date: Thu, 28 Nov 2002 17:33:45 +0800 Ok, I have an existing MySQL database that has user's passwords stored that were encrypted