<?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 Encryption in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826527#M1589526</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got a requirement to encrypt and decrypt a particular field. How we can perform encrypt and decrypt in abap,&lt;/P&gt;&lt;P&gt;Please suggest me some classess or Function module to do the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 May 2011 05:10:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-05-10T05:10:35Z</dc:date>
    <item>
      <title>Encryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826527#M1589526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got a requirement to encrypt and decrypt a particular field. How we can perform encrypt and decrypt in abap,&lt;/P&gt;&lt;P&gt;Please suggest me some classess or Function module to do the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 05:10:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826527#M1589526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-10T05:10:35Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826528#M1589527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Function Module for Encryption and Decryption&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any function module which can be used for encryption or decryption of any particular field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following FM to encrypt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FIEB_PASSWORD_ENCRYPT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following FM to decrypt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'FIEB_PASSWORD_DECRYPT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By these FM you can encrypt &amp;amp; decrypt any fields of the Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhina..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 05:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826528#M1589527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-10T05:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826529#M1589528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two more things:&lt;/P&gt;&lt;P&gt;1. You can't use these FM to decode user passwords.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Although their import parameters are case sensitive, when you test them from se37, the import parameters are converted to uppercase (thus, it may seem that they aren't working).  A suggestion: encapsulate them in a custom FM that receives a string to be encrytped/decrypted and a parameter that says if you want to encrypt or decrypt and call this fm from your program. Test them very carefully, because once the string has been encrypted the decryption side is the only way to get it back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function zsecurtext.&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Interfase local&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(INTEXT) TYPE  FIEB_DECRYPTED_PASSWD OPTIONAL&lt;/P&gt;&lt;P&gt;*"     REFERENCE(ENCRYPT) TYPE  C OPTIONAL&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(OUTTEXT) TYPE  FIEB_DECRYPTED_PASSWD&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;NOTE: This code doesn't work if run from se37. You should&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;encrypt&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;  if encrypt = 'X'.&lt;/P&gt;&lt;P&gt;    call function 'FIEB_PASSWORD_ENCRYPT'&lt;/P&gt;&lt;P&gt;         exporting&lt;/P&gt;&lt;P&gt;              im_decrypted_password = intext&lt;/P&gt;&lt;P&gt;         importing&lt;/P&gt;&lt;P&gt;              ex_encrypted_password = outtext.&lt;/P&gt;&lt;P&gt;   else.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="8" type="ul"&gt;&lt;P&gt;Decrypting *******************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;    call function 'FIEB_PASSWORD_DECRYPT'&lt;/P&gt;&lt;P&gt;         exporting&lt;/P&gt;&lt;P&gt;              im_encrypted_password = intext&lt;/P&gt;&lt;P&gt;         importing&lt;/P&gt;&lt;P&gt;              ex_decrypted_password = outtext.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endfunction. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhina..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 05:17:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826529#M1589528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-10T05:17:21Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826530#M1589529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Already tried this FM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can encrypt by using this thats fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but while doing the decrption of the encrypted value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FM Returning blank value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 05:19:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826530#M1589529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-10T05:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826531#M1589530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this Fm for 64 Bit encryption - DECODE_SLDPWD_BASE64.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And Check this link also,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/people/kathirvel.balakrishnan2/blog/2006/11/21/encryption-decryption-of-data-using-abap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you,&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Manu S&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ManuSNair on May 10, 2011 10:54 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ManuSNair on May 10, 2011 10:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 05:19:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826531#M1589530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-10T05:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826532#M1589531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Please Ref the Link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1516318"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhina..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2011 05:58:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826532#M1589531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-10T05:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826533#M1589532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 May 2011 10:08:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption/m-p/7826533#M1589532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-12T10:08:32Z</dc:date>
    </item>
  </channel>
</rss>

