Re: Password encryption in Java

2001-01-08 Thread romain
On Mon, 8 Jan 2001, Deepak C S wrote: > > Hi, > > Can anybody tell about" How we can encrypt Passwords in Java??"say > like Perl's or Unix Crypt function?? > > i mean, > > Is there any Java equivalent of unix crypt() func?? > > thanx in advance, > Deeps take a look at the java.secu

RE: Password encryption in Java

2001-01-08 Thread Kitching Simon
A java implementation of crypt can be found at: http://locutus.kingwoodcable.com/jfd/crypt.html Alternatives are to use MD5 or similar from the java encryption api (I think most jvms provide an implementation of the major algorithms). However, if you need to access the password from both java a