Hi UiPath,
I would like to add a feature request for the UiPath Apps product.
It is currently not possible to encrypt text before passing it on. The following one-liner doesn’t work as an expression:
Convert.ToBase64String(System.Security.Cryptography.TripleDES.Create().CreateEncryptor(System.Text.Encoding.UTF8.GetBytes(“123456789012345678901234”), System.Text.Encoding.UTF8.GetBytes(“12345678”)).TransformFinalBlock(System.Text.Encoding.UTF8.GetBytes(“”), 0, “”.Length))
because “TripleDES’ is not a member of ‘System.Security.Cryptography’”.
From what I understood .dll files are imported by Blazor. Can the System.Security.Cryptography be updated so that it supports the encryption protocols?
