on ‎2024 May 09 11:29 AM
Hello,
We need for one of our solutions to establish secure, encrypted connection with custom API. How we can encrypt messages in ABSL language in SAP BusinessByDesign? Messages are sent by REST protocol. What are ways to incorporate symmetric-key encryption and asymmetric encryption.
With regards,
Peter
Request clarification before answering.
Hi Peter,
You can try using one of the Platinum Engineering libraries.
import ABSL;
import AP.PlatinumEngineering;
var StringToBeEncrypted : XPEString;
StringToBeEncrypted = "test-123";
var Secretkey : XPEString;
Secretkey = "ExactlyThisLeng!" ; // the secretkey must have exactly this length
var EncryptedString = Hash.EncryptString("AES128",StringToBeEncrypted,Secretkey); // "AES128", "AES192", "AES256" can be used
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 12 | |
| 9 | |
| 7 | |
| 5 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.