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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Encryption in BO XI

Status
Not open for further replies.

kambike

Programmer
Jul 24, 2001
12
US
HI,

We have some sensitive data for the company. If this data is in encrypted format in database, can BO read and decrypt ot to display?

In general how can BO use encryption? Is there any way in BO to handle encryption, specially if we do not want to allow anyone to see the sensitive data diretly.

Regards
Kambike
 
As far as my knowledge goes, I don't think there is any encryption or decryption BO automatically does.

If you have encrypted data in the database, you probably know the encryption logic, you have to write a query or program to decrypt it.

However if you don't want users to see sensitive data, one solution is to mask some character(s) in the data by replacing it with some character "X".
 
If you want the sensitive data to be visible to only the users who use BO, then you need to use a stored function in the select portion of the object.

eg. decrypt_me(table.column)


Steve Krandel
Intuit
 
What we want in the project is that the data in the database should be encrypted so that no one can access it directly. This data should be decrypted in BO when the user is running a report and shown to him. Can we do it in BO? Is there any way where I can call any external DLL / program to decrypt?

Regards,
kambike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top