Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Encryption Method 1

Status
Not open for further replies.

dckamo

IS-IT--Management
Nov 11, 2003
27
ZA
Hi

I need to validate a User Id and password against an Ellipse 5.2.3 database (MSF020).

Any ideas as to what encryption method or module I can use
to validate the password.

I need to implement this validation in a legacy java application.

Regards
Kes

 
The Ellipse subroutine msssec.cbl calls an external executable crypt (uses a standard Unix DES-based encryption algorithm) with the password (padded to 10 characters with white space) and a salt based on the userid (check msssec.cbl for the salt calculation).
The returned value from crypt is truncated to 10 characters and stored (or compared with during sign-on) in the field pass_word of the database table msf020.
So you could download a version of crypt from the internet and re-create the salt and compare the Ellipse password via a JDBC connection to the database, however this does not mean you can bypass the Ellipse Login process when creating a connection with Ellipse using the Ellipse API’s.

Drew
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top