Skip to main content

Encrypt Decrypt password or text in AXapta 2012


Encrypt or Decrypt in AX 2012

You can test following code in job before applying to main form.


 CryptoApi cryptoApi;  
   Container container1,container2;  
   ContainerClass concls;  ;  
   cryptoApi = new CryptoApi(99999999999);  
   concls= new ContainerClass(["AbcCls"]);  
   container1 = CryptoApi.encrypt(concls.toBlob());  
   container2 = ContainerClass::blob2Container(CryptoApi.decrypt(container1));  
   info(Strfmt("Encrypted:%1",BinData::dataToString(container1)));  
   info(con2str(container2));  

I hope you get your answer.

Popular posts from this blog

X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )

Below is sample X++ Code to run SSRS Report with parameter in D365 F&O (Example Sales Invoice )      Args                       args = new Args();     CustInvoiceJour            custInvoiceJour;     SalesInvoiceJournalPrint   salesInvoiceJournalPrint;       select firstonly custInvoiceJour where custInvoiceJour.SalesId != '';       // Add record to be printed.     // In order to have the context table we need to set args.record().     args.record(custInvoiceJour);       salesInvoiceController = new SalesInvoiceController();     salesInvoiceController.parmReportName(         PrintMgmtDocType::construct(PrintMgmtDocumentType::SalesOrderInvoice).getDefaultReportFormat());       salesInvoiceContract = salesInvoiceController.parmReportContrac...