<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Encoding / Decoding base64Binary with AES-128ECB in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666235#M29189</link>
    <description>&lt;P&gt;Hi Simone,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Similar development was carried out by someone earlier and has some problems in de-crypting. This was discussed in one of the issues of AES library. Please look into the issue at the url&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://github.com/Sumu-Ning/AES/issues/15" target="test_blank"&gt;https://github.com/Sumu-Ning/AES/issues/15&lt;/A&gt; &lt;/P&gt;
  &lt;P&gt;Issue there is different but, it might give you an idea how it is handled there. Further, the code used there is an adapted version of the whole library but not the library itself.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Hope that helps..&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 01 Aug 2018 11:17:10 GMT</pubDate>
    <dc:creator>raviandela</dc:creator>
    <dc:date>2018-08-01T11:17:10Z</dc:date>
    <item>
      <title>Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666232#M29186</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
  &lt;P&gt;to follow hungarian new law about electronic invoice (NAV system) i'm fighting and struggling with encoding and decoding data... and i'm loosing, bad, such fight.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;The scenario&lt;BR /&gt;&lt;/STRONG&gt;Every communication and payload works on XML structure.&lt;/P&gt;
  &lt;P&gt;Using provided login, i ask for a token to the API and i got it as answer as base64Binary, crypted with AES-128 ECB algorithm.&lt;/P&gt;
  &lt;P&gt;I should decrypt the token and send it back in the data communication, in a field defined with the facet&lt;/P&gt;
  &lt;P&gt; &lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/176593-facet.png" /&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;What i did until now&lt;/STRONG&gt;&lt;/P&gt;
  &lt;UL&gt;
   &lt;LI&gt;I receive the token ( example from the last call: mrlWpOOkvG8uuFL05v/VPyCXxr86OoS/dPu5PFsz+mWB29p/kn1MxPsTqZ9MmNcBpEfI8RU3lzbxUu7t+U0tjg== )&lt;/LI&gt;
   &lt;LI&gt;Convert my token into &lt;B&gt;XSTRING&lt;/B&gt; to be able to decrypt it us&lt;/LI&gt;
  &lt;/UL&gt;
  &lt;PRE&gt;&lt;CODE&gt; TYPES: BEGIN OF t_t,
                bin TYPE char100
             END OF t_t.
    DATA: t_bin TYPE TABLE OF  t_t WITH DEFAULT KEY,
          r_bin TYPE t_t,
          len TYPE i.
    r_bin-bin = i_data. "my token
    APPEND r_bin TO t_bin.    len = strlen( r_bin-bin ). "88
    CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
      EXPORTING
         input_length = len
      IMPORTING
        buffer       = e_hex
      TABLES
        binary_tab   = t_bin
      EXCEPTIONS
        failed       = 1
        OTHERS       = 2.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;UL&gt;
   &lt;LI&gt;To decrypt the token, i got a string-type key, so i convert it to XSTRING too&lt;/LI&gt;
  &lt;/UL&gt;
  &lt;PRE&gt;&lt;CODE&gt; FUNCTION 'SCMS_STRING_TO_XSTRING'
     EXPORTING
       text = c_key "the string key
     IMPORTING
        buffer = xkey
     EXCEPTIONS
       failed = 1
       OTHERS = 2.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;UL&gt;
   &lt;LI&gt;With my 2 xstring values (token and key) i rely on&lt;A href="https://github.com/Sumu-Ning/AES"&gt;https://github.com/Sumu-Ning/AES&lt;/A&gt; to decrypt the XSTRING-Token (i checked the result here &lt;A href="http://extranet.cryptomathic.com/aescalc/index"&gt;http://extranet.cryptomathic.com/aescalc/index&lt;/A&gt; and it's the same so i guess my token is decrypted)&lt;/LI&gt;
  &lt;/UL&gt;
  &lt;PRE&gt;&lt;CODE&gt; mode = zcl_aes_utility=&amp;gt;mc_encryption_mode_ecb.zcl_aes_utility=&amp;gt;decrypt_xstring(            EXPORTING                  i_key = xkey                  i_data = i_token                  i_initialization_vector = iv "initial                 i_encryption_mode = mode           IMPORTING                 e_data = resultx ).&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;UL&gt;
   &lt;LI&gt;And finally i reconvert the decrypted token to Base64 again &lt;/LI&gt;
  &lt;/UL&gt;
  &lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'SCMS_BASE64_ENCODE'
 EXPORTING
 input = x_s
 input_length = len "XSTRING from decrypt / 2
 IMPORTING
 output = o_c
 EXCEPTIONS
 output_too_small = 1
 OTHERS = 2.
 IF sy-subrc &amp;lt;&amp;gt; 0.
* Implement suitable error handling here
 ENDIF.
 token = o_c.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;UL&gt;
   &lt;LI&gt;And this lead to a token long like the first one ( ryyXiG2iEn+Y/NSeAyY4GAhlw3i6o9PaC0s3UhnPPGKjeRqmODXo6vXGW1TUoswfTn5rVLNm2Lgah6zmSDY7Cg== ), which violates the text50 facet.&lt;/LI&gt;
  &lt;/UL&gt;
  &lt;P&gt;i also tried to convert my XSTRING to String instead of Base64 using the proposed solution i found on SCN and around the net (i.e. &lt;A href="http://www.samplecodeabap.com/convert-xstring-string/" target="_blank"&gt;http://www.samplecodeabap.com/convert-xstring-string/&lt;/A&gt; ) but i discarded this solution because it ends up into generating a bunch of gibberish characters not unicode.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;What i need?&lt;BR /&gt;&lt;/STRONG&gt;i am sure i'm messing something into the whole procedure of take-the-unholy-token-and-decrypt-it, maybe messing with the strings sizes, but i'd really appreaciate if someone could slap my head and points me in the right direction.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 09:27:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666232#M29186</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2018-08-01T09:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666233#M29187</link>
      <description>&lt;P&gt;Hello Simone,&lt;/P&gt;
  &lt;P&gt;right from start you are mentioning the token you receiving (mrlWpOOkvG8uuFL05v/VPyCXxr86OoS/dPu5PFsz+mWB29p/kn1MxPsTqZ9MmNcBpEfI8RU3lzbxUu7t+U0tjg==).&lt;/P&gt;
  &lt;P&gt;But after that you are trying to convert it to xstring with SCMS_BINARY_TO_XSTRING.&lt;/P&gt;
  &lt;P&gt;I think that is the problem. &lt;/P&gt;
  &lt;P&gt;Because token looks like BASE64 string. So you need to &lt;STRONG&gt;decode&lt;/STRONG&gt; this BASE64 &lt;STRONG&gt;string&lt;/STRONG&gt; to &lt;STRONG&gt;xstring&lt;/STRONG&gt;. Then you can &lt;STRONG&gt;decrypt&lt;/STRONG&gt; this &lt;STRONG&gt;xstring &lt;/STRONG&gt;and so no... rest of your steps seems OK.&lt;BR /&gt;TIP: I like to use CL_HTTP_UTILITY for decoding/encoding BASE64 &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; There are 4 methods (2 for string and 2 for xstring)...&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:03:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666233#M29187</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2018-08-01T11:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666234#M29188</link>
      <description>&lt;P&gt;Thanks Tomas!&lt;/P&gt;
  &lt;P&gt;i was pondering exactly that thing.&lt;/P&gt;
  &lt;P&gt;i replaced the FM SCMS_BINARY_TO_XSTRING with the code below but still i got a "decrypted token too long" (88 chars)&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'SCMS_BASE64_DECODE_STR'
     EXPORTING
         input = i_data
     IMPORTING
         output = e_hex
     EXCEPTIONS
         failed = 1
         OTHERS = 2.
 IF sy-subrc = 0.
     EXIT.
 &lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:16:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666234#M29188</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2018-08-01T11:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666235#M29189</link>
      <description>&lt;P&gt;Hi Simone,&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Similar development was carried out by someone earlier and has some problems in de-crypting. This was discussed in one of the issues of AES library. Please look into the issue at the url&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;A href="https://github.com/Sumu-Ning/AES/issues/15" target="test_blank"&gt;https://github.com/Sumu-Ning/AES/issues/15&lt;/A&gt; &lt;/P&gt;
  &lt;P&gt;Issue there is different but, it might give you an idea how it is handled there. Further, the code used there is an adapted version of the whole library but not the library itself.&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;Hope that helps..&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:17:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666235#M29189</guid>
      <dc:creator>raviandela</dc:creator>
      <dc:date>2018-08-01T11:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666236#M29190</link>
      <description>&lt;P&gt;Hi Ravi,&lt;/P&gt;
  &lt;P&gt;it's not a decrypt issue: as i said, i used a couple of online tools and i got the same result as the class.&lt;/P&gt;
  &lt;P&gt;So i'm &lt;EM&gt;somehow&lt;/EM&gt; confident it's not that the point &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:21:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666236#M29190</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2018-08-01T11:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666237#M29191</link>
      <description>&lt;P&gt;Functions SCMS_BASE64_DECODE_STR and SCMS_BASE64_ENCODE are not released. Try some other encode/decode ways (for example that class in my post).&lt;BR /&gt;But that won't be the problem probably...&lt;/P&gt;
  &lt;P&gt;There seems to be other problem. Are you sure that you are supposed to return that token encoded in BASE64? Shouldn't it be in plain text?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:36:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666237#M29191</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2018-08-01T11:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666238#M29192</link>
      <description>&lt;P&gt;Just to be sure, i try to switch to the class (that i discovered i used in an old project: i'm getting old and i forgot stuff!).&lt;/P&gt;
  &lt;P&gt;For plain text, i quote myself from the initial thread&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;i also tried to convert my XSTRING to String instead of Base64 using the proposed solution i found on SCN and around the net (i.e. &lt;A href="http://www.samplecodeabap.com/convert-xstring-string/"&gt;http://www.samplecodeabap.com/convert-xstring-string/&lt;/A&gt; ) but i discarded this solution because it ends up into generating a bunch of gibberish characters not unicode.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:43:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666238#M29192</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2018-08-01T11:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666239#M29193</link>
      <description>&lt;P&gt;Was it "gibberish" also when you tried decoding BASE64 token at the beginning?&lt;/P&gt;
  &lt;P&gt;Is your system unicode? You should always keep in my codepage when you convert binary data to string...&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 11:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666239#M29193</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2018-08-01T11:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666240#M29194</link>
      <description>&lt;P&gt;Yes, i'm in Unicode system and all the requests are in UTF-8 as per suggestion in the documentation&lt;BR /&gt;&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;The save to database and the response will always be UTF-8, regardless of the encoding specified in the inquiry, therefore it is advised to use this type of encoding in the query.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;So i call &lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA lref_convt TYPE REF TO cl_abap_conv_in_ce.
 DATA lv_string TYPE string.&lt;BR /&gt;CALL METHOD cl_abap_conv_in_ce=&amp;gt;create
 EXPORTING
   input = resultx
   encoding = 'UTF-8'
   ignore_cerr = abap_true
 RECEIVING
   conv = lref_convt.&lt;BR /&gt;CALL METHOD lref_convt-&amp;gt;read
 IMPORTING
     data = token.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;and the token looks like&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/176601-1.png" /&gt;&lt;/P&gt;
  &lt;P&gt;And i got as answer&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;An invalid XML character (Unicode: 0x1e) was found in the element content of the document&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Aug 2018 12:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666240#M29194</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2018-08-01T12:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666241#M29195</link>
      <description>&lt;P&gt;Sorry, do not have any other ideas &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;I would try combinations and double checks of each step. And clarify with somebody what is expected in that 50 char field...&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 13:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666241#M29195</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2018-08-01T13:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666242#M29196</link>
      <description>&lt;P&gt;Thanks a lot Tomas for all the effort: i &lt;STRONG&gt;know &lt;/STRONG&gt;it's something stupid i'm missing and this sends me crazy!&lt;/P&gt;
  &lt;P&gt;Anyway i contacted the hungarian IT for NAV and i'll wait the answer.&lt;/P&gt;
  &lt;P&gt;Funny thing: the standard SAP solution relying on SCP works fine so it's definitively something on my side!&lt;/P&gt;
  &lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Aug 2018 13:54:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666242#M29196</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2018-08-01T13:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666243#M29197</link>
      <description>&lt;P&gt;Hi Tomas!&lt;/P&gt;
  &lt;P&gt;I found the solution: due an error in the documentation (well, more a "not so clear passage" in it), i was using the wrong key (i got 2 of them) to decode the token.&lt;/P&gt;
  &lt;P&gt;Once i managed to use the right key, i managed to convert the token in UTF-8 with the right format!&lt;BR /&gt;&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;DATA: obj TYPE REF TO cl_abap_conv_in_ce.&lt;BR /&gt;TRY.
 CALL METHOD cl_abap_conv_in_ce=&amp;gt;create
     EXPORTING
        input = resultx
        encoding = 'UTF-8'
        replacement = '?'
        ignore_cerr = abap_true
     RECEIVING
        conv = obj.
   CATCH cx_parameter_invalid_range .
   CATCH cx_sy_codepage_converter_init .
ENDTRY.
len = xstrlen( resultx ).
TRY.
 CALL METHOD obj-&amp;gt;read
    EXPORTING
       n = len
    IMPORTING
      data = token.
 CATCH cx_sy_conversion_codepage .
 CATCH cx_sy_codepage_converter_init .
 CATCH cx_parameter_invalid_type .
 CATCH cx_parameter_invalid_range .&lt;BR /&gt;ENDTRY.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;Thanks for all the time you put in this issue and and forgive me to have you wasting it!&lt;/P&gt;</description>
      <pubDate>Thu, 02 Aug 2018 12:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666243#M29197</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2018-08-02T12:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Encoding / Decoding base64Binary with AES-128ECB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666244#M29198</link>
      <description>&lt;P&gt;Glad you made it working &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Aug 2018 13:33:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encoding-decoding-base64binary-with-aes-128ecb/m-p/666244#M29198</guid>
      <dc:creator>Tomas_Buryanek</dc:creator>
      <dc:date>2018-08-02T13:33:29Z</dc:date>
    </item>
  </channel>
</rss>

