Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

encryption

Former Member
0 Likes
421

you can use your own encryption or decryption or call the OS. But you will have a problem regardless:What do you use to encrypt or decrypt the user ID and password? A key a.k.a. password. And if you want to automate, where do you store THAT? If you build a password or store it somewhere, you run the risk that someone else can build or read the password the same way, then use the information. Please help how to figure out this problem.

2 REPLIES 2
Read only

former_member156446
Active Contributor
0 Likes
377

Read only

Former Member
0 Likes
377

CALL FUNCTION 'FIEB_PASSWORD_ENCRYPT'

EXPORTING

IM_DECRYPTED_PASSWORD = password1

IMPORTING

EX_ENCRYPTED_PASSWORD = password2.

Decryption:

CALL FUNCTION 'FIEB_PASSWORD_DECRYPT'

EXPORTING

IM_ENCRYPTED_PASSWORD = password2

IMPORTING

EX_DECRYPTED_PASSWORD = password3

Regards