I am using the SnapDevelop 2021 Powerscript to C# migrator tool. I received the not supported errors on the CrypterObject. as shown below:
// [ERROR0008] Translation of the enum value(AES!) is not supported.
// [ERROR0008] Translation of the enum value(OperationModeEBC!) is not supported.
// [ERROR0008] Translation of the enum value(DefaultPadding!) is not supported.
lblb_encrypt = lnv_CrypterObject.SymmetricEncrypt(AES!, lblb_data, lblb_key, OperationModeEBC!, lblb_iv, DefaultPadding!);
Does anyone know the numeric values of the enumerations used with the SymmetricEncryption function?
Is is CrypterObject support for use inside a C# Rest API inside SnapDevelop?