<?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 HTTP_SCRAMBLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312165#M162294</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;       The function module as far as my knowledge is used for password encryption.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Can anyone explain me how I will pass parameters to the FM so that the pass word is encrypted &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Pls explain me by code or tel how to write code for password so that it is not hard coded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     With regards,&lt;/P&gt;&lt;P&gt;      Abir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 May 2006 12:35:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-22T12:35:57Z</dc:date>
    <item>
      <title>HTTP_SCRAMBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312165#M162294</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;       The function module as far as my knowledge is used for password encryption.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Can anyone explain me how I will pass parameters to the FM so that the pass word is encrypted &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Pls explain me by code or tel how to write code for password so that it is not hard coded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     With regards,&lt;/P&gt;&lt;P&gt;      Abir.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 May 2006 12:35:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312165#M162294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-22T12:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP_SCRAMBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312166#M162295</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;GOOD&lt;/P&gt;&lt;P&gt;GO THROUGH THESE DOCUMENTS&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="578191"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS&lt;/P&gt;&lt;P&gt;MRUTYUN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 May 2006 12:41:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312166#M162295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-22T12:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP_SCRAMBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312167#M162296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know what this FM does, but this function modules may be helpful to you:&lt;/P&gt;&lt;P&gt;FIEB_PASSWORD_ENCRYPT&lt;/P&gt;&lt;P&gt;and FIEB_PASSWORD_DECRYPT&lt;/P&gt;&lt;P&gt;Eg:&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;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 May 2006 12:42:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312167#M162296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-22T12:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP_SCRAMBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312168#M162297</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;it is not used to encrypt as such.&lt;/P&gt;&lt;P&gt;any way check this and also check this Standard Program&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;RSFTP003&amp;lt;/b&amp;gt; for the usage of the same&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;slen = strlen( pwd ).

call function 'HTTP_SCRAMBLE'
  exporting
    source      = pwd
    sourcelen   = slen
    key         = key
  importing
    destination = pwd.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 May 2006 12:42:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312168#M162297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-22T12:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: HTTP_SCRAMBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312169#M162298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also use this instead of HTTP_SCRANMBLE FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DESCRIBE FIELD PWD LENGTH DSTLEN.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  CALL 'AB_RFC_X_SCRAMBLE_STRING'
    ID 'SOURCE'      FIELD PWD    ID 'KEY'         FIELD KEY
    ID 'SCR'         FIELD 'X'    ID 'DESTINATION' FIELD PWD
    ID 'DSTLEN'      FIELD DSTLEN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;both are same.Before connecting to FTP, you will call this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 May 2006 12:51:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/http-scramble/m-p/1312169#M162298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-22T12:51:08Z</dc:date>
    </item>
  </channel>
</rss>

