<?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: Encrypt and Decrypt Data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137584#M113593</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dominik,&lt;/P&gt;&lt;P&gt;   The usage of the Function module is correct but I am also lost as to how to explain the behavior of the decryption FM.&lt;/P&gt;&lt;P&gt;I'll explore some other Fms and get back to you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Jan 2006 13:38:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-19T13:38:58Z</dc:date>
    <item>
      <title>Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137581#M113590</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'm looking for a way to encrypt or decrypt data before it's written or read from the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it should be possible to use some sort of key (or password) for the en- and decryption.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does somebody know some abap coding to take care that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2006 12:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137581#M113590</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-19T12:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137582#M113591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FIEB_PASSWORD_ENCRYPT and&lt;/P&gt;&lt;P&gt;FIEB_PASSWORD_DECRYPT are Function modules which does the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2006 12:44:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137582#M113591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-19T12:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137583#M113592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx for the quick response. i just don't know how to use this functionmodules. i think i interpret the parameters wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  EN_DECRYPT_TEST.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Data enpwd(32) type c.&lt;/P&gt;&lt;P&gt;parameter pwd like enpwd .&lt;/P&gt;&lt;P&gt;&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;Encrypting *******************&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_ENCRYPT'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          IM_DECRYPTED_PASSWORD = pwd&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;         EX_ENCRYPTED_PASSWORD = enpwd&lt;/P&gt;&lt;P&gt;          .&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 = enpwd&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;         EX_DECRYPTED_PASSWORD = pwd&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;&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;UL&gt;&lt;LI level="9" type="ul"&gt;&lt;P&gt;Output **********************&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;/UL&gt;&lt;P&gt;write:/ 'Encrypt data=', enpwd,&lt;/P&gt;&lt;P&gt;      / 'Decrypt data=', pwd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2006 13:34:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137583#M113592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-19T13:34:03Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137584#M113593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dominik,&lt;/P&gt;&lt;P&gt;   The usage of the Function module is correct but I am also lost as to how to explain the behavior of the decryption FM.&lt;/P&gt;&lt;P&gt;I'll explore some other Fms and get back to you.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Jan 2006 13:38:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137584#M113593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-19T13:38:58Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137585#M113594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is someone there who knows a solution?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2006 16:09:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137585#M113594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-20T16:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137586#M113595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this link , may be helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/function-module-for-encryption-and-decryption.htm" target="test_blank"&gt;http://www.sap-img.com/abap/function-module-for-encryption-and-decryption.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2006 17:05:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137586#M113595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-20T17:05:06Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137587#M113596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dominik,  your program actually works very good in my system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jan 2006 17:08:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137587#M113596</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-20T17:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137588#M113597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dominik, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the FIEB_PASSWORD_ENCRYPT function module, if you double click on &amp;lt;b&amp;gt;perform encrypt_password&amp;lt;/b&amp;gt;,  there is a FORM called &amp;lt;b&amp;gt;character_search&amp;lt;/b&amp;gt;.  Look for a line like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*  describe field im_string length l_length.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this line is commented out, the encryption function module will not work.  This line is commented out in my 4.7 system's FIEB_PASSWORD_ENCRYPT function module.  I had to copy the code to my own function module and it works fine now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vince.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Feb 2006 18:51:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137588#M113597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-14T18:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137589#M113598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;We (still) have 4.6C system. These function modules work fine. I have couple of questions along this line though. &lt;/P&gt;&lt;P&gt;1) Do these FMs need SAPCrypto functionality for encryption and decryption? I don't beleive they do. If not, how does the FMs work?&lt;/P&gt;&lt;P&gt;2) Also, what type and level (RSA? 128-Bit) encryption do these modules use?&lt;/P&gt;&lt;P&gt;Appreciate your help.&lt;/P&gt;&lt;P&gt;-Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Mar 2006 15:40:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137589#M113598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-10T15:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137590#M113599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vincent,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also copied FMs FIEB_PASSWORD_ENCRYPT and FIEB_PASSWORD_DECRYPT to uncomment piece of code you mentioned. But, I am not able to decypt the paswd properly. Help will be appriciated on how you have achieved this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gouri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2009 05:31:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137590#M113599</guid>
      <dc:creator>former_member215917</dc:creator>
      <dc:date>2009-08-18T05:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137591#M113600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you can try this FM : DECODE_SLDPWD_BASE64 for 64 Bit encryption&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2009 08:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137591#M113600</guid>
      <dc:creator>indra_dewaji</dc:creator>
      <dc:date>2009-08-20T08:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137592#M113601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, check this article:&lt;/P&gt;&lt;P&gt;&lt;A __default_attr="56728" __jive_macro_name="document" class="jive_macro_document jive_macro" data-orig-content="Encryption Algorithm using class :CL_HARD_WIRED_ENCRYPTOR" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Guilherme.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jan 2015 08:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137592#M113601</guid>
      <dc:creator>dellagustin</dc:creator>
      <dc:date>2015-01-22T08:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Encrypt and Decrypt Data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137593#M113602</link>
      <description>&lt;P&gt;Hi Indra,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Base64 is no encryption! This is a dangerous recomendation.&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Jon&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 14:28:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encrypt-and-decrypt-data/m-p/1137593#M113602</guid>
      <dc:creator>JonathanStross</dc:creator>
      <dc:date>2023-12-11T14:28:06Z</dc:date>
    </item>
  </channel>
</rss>

