ユーザーならびにパスワード暗号化:User and password encryption

WEBアプリケーション等を起動して、ユーザーとパスワードを入力までの実行を考えています。
セキュリティ上、ユーザー及びパスワードを暗号化し利用時に復号を考え実行を考えていますが
uipathでどのようにすべきかご教示ください。

I am planning to launch WEB application etc.
and execute until user and password are input.
For security reasons, I would like to encrypt the user name and password, decrypt it and use it.

HI @matrix99999

check the below post

https://www.codeproject.com/Articles/14150/Encrypt-and-Decrypt-Data-with-C

Thanks
Ashwin S

Usually, you would use the Windows Credential Manager for this (they are securely stored.) You can have a look at the System.Credentials namespace (e.g. Get Secure Credential).

If you are using Orchestrator, you can also manage your credentials Orchestrator-side as Credential Assets (e.g. Get Credential)

Finally, there is the legacy Get Password activity which keeps the password encrypted inside the xaml, but you will not be able to run it on any other machine. It is seldom used nowadays, but it is still there.

Note that since you have access to basically all of .Net, you can very well use Invoke Code to implement your own encryption in VB if it can better fit your needs:

またご質問やフィードバック等ありましたら、ご連絡お願いいたします。

Thank you for the idea.
Do you know the function to encrypt variable in UIPATH?
Because UIPATH wants to make it understandable by everyone.
Is it impossible with the function of UIPATH?
I want to make it work like everyone knows.

hi @matrix99999

check the below post

Thanks
Ashwin S

Hi @matrix99999 ,
Please check this for encryption and decryption.

Regards
Balamurugan