<?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: Encryption-Decryption logic using abap in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508381#M1066400</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check out this link...&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>Sat, 27 Sep 2008 13:34:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-27T13:34:29Z</dc:date>
    <item>
      <title>Encryption-Decryption logic using abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508379#M1066398</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;Pls provide me sample program which will encrypt / decrypt data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harshada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2008 11:46:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508379#M1066398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-26T11:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption-Decryption logic using abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508380#M1066399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: password TYPE xstring. &lt;/P&gt;&lt;P&gt;DATA: en_password TYPE string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;password = random_t.     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSFC_BASE64_ENCODE' &lt;/P&gt;&lt;P&gt;  EXPORTING &lt;/P&gt;&lt;P&gt;    bindata                  = password &lt;/P&gt;&lt;P&gt;  IMPORTING &lt;/P&gt;&lt;P&gt;    b64data                  = en_password           &lt;/P&gt;&lt;P&gt;  EXCEPTIONS &lt;/P&gt;&lt;P&gt;    ssf_krn_error            = 1 &lt;/P&gt;&lt;P&gt;    ssf_krn_noop             = 2 &lt;/P&gt;&lt;P&gt;    ssf_krn_nomemory         = 3 &lt;/P&gt;&lt;P&gt;    ssf_krn_opinv            = 4 &lt;/P&gt;&lt;P&gt;    ssf_krn_input_data_error = 5 &lt;/P&gt;&lt;P&gt;    ssf_krn_invalid_par      = 6 &lt;/P&gt;&lt;P&gt;    ssf_krn_invalid_parlen   = 7 &lt;/P&gt;&lt;P&gt;    OTHERS                   = 8. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE i901 WITH en_password. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSFC_BASE64_DECODE' &lt;/P&gt;&lt;P&gt;  EXPORTING &lt;/P&gt;&lt;P&gt;    b64data                  = en_password      &lt;/P&gt;&lt;P&gt;  IMPORTING &lt;/P&gt;&lt;P&gt;    bindata                  = password            &lt;/P&gt;&lt;P&gt;  EXCEPTIONS &lt;/P&gt;&lt;P&gt;    ssf_krn_error            = 1 &lt;/P&gt;&lt;P&gt;    ssf_krn_noop             = 2 &lt;/P&gt;&lt;P&gt;    ssf_krn_nomemory         = 3 &lt;/P&gt;&lt;P&gt;    ssf_krn_opinv            = 4 &lt;/P&gt;&lt;P&gt;    ssf_krn_input_data_error = 5 &lt;/P&gt;&lt;P&gt;    ssf_krn_invalid_par      = 6 &lt;/P&gt;&lt;P&gt;    ssf_krn_invalid_parlen   = 7 &lt;/P&gt;&lt;P&gt;    OTHERS                   = 8. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE i901 WITH password.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Sep 2008 19:53:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508380#M1066399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-26T19:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption-Decryption logic using abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508381#M1066400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check out this link...&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>Sat, 27 Sep 2008 13:34:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508381#M1066400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-27T13:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption-Decryption logic using abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508382#M1066401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Encryption &amp;amp; Decryption of data using ABAP&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; Link:&lt;A class="jive_macro jive_macro_blogpost" href="https://community.sap.com/" __jive_macro_name="blogpost" modifiedtitle="true" __default_attr="42857"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Sep 2008 13:56:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508382#M1066401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-27T13:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Encryption-Decryption logic using abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508383#M1066402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIEB_PASSWORD_ENCRYPT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIEB_PASSWORD_DECRYPT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Sep 2008 14:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/encryption-decryption-logic-using-abap/m-p/4508383#M1066402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-27T14:00:50Z</dc:date>
    </item>
  </channel>
</rss>

