How to convert string base 64 encoded password

Hi all,

I need to convert password as base 64 encoded password. Kindly help me

you can use the below code

plainTextBytes = System.Text.Encoding.UTF8.GetBytes(plainText)
base64String =  System.Convert.ToBase64String(plainTextBytes)

Hi,

FYI, another approach:
If you can use custom activities, the following might help you.

Regards,