3/16/2026 3:27:39 AM
|
| |
| slxdeveloper.com Community Forums |
|
| |
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss writing script in Architect plugins for SalesLogix & general SalesLogix customization topics (for Windows client only). View the code of conduct for posting guidelines.
|
|
|
|
How to encrypt password fields in DB Tables ?
Posted: 20 Sep 07 1:08 AM
|
Hi all!
My requirement is: 1. There is a grid in my application and that has a password field retrieved from the database to be displayed. I need to display asterisks (*****) instead of the string there. How can I do this ?
2. How to encrypt the password fields in the database tables, so that even an DBA willnot be able to know the password ?
Any suggestions/pointers would be of good help!
TIA! CGK.
|
|
|
| |
|
Re: How to encrypt password fields in DB Tables ?
Posted: 21 Sep 07 12:47 AM
|
Hi Chaitanya, You can use SLXRWEL.dll for encrypt & decrypt password. Hers is the sample code: Set objRwel = CreateObject("SLXRWEL.SLXRWEOBJ") ' To encrypt sEncrypted = objRwel.Add(password) ' to decrypt sDecrypted = objRwel.Remove(password) Set objRwel = Nothing |
|
|
| |
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|