Hello everyone, I have device that needs HMAC MD5 calculation to return the original binary data and then Base64 encode it. I can use Lazarus to generate the data of result A as shown in the figure[HMACMD5('1234567890', 'Hello world!');], and I can also Base64 encode result A[EncodeStringBase64(HMACMD5('1234567887654321', 'Hello world!'));]. Does anyone know how to generate the code of result B in the figure?