<?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: FM for encryption / decryption in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968830#M69185</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I do not see how to decrypt the encrypted string if I use  DP_SCRAMBLE_STRING or SCRAMBLE_STRING o command&lt;/P&gt;&lt;P&gt; CALL 'AB_RFC_X_SCRAMBLE_STRING'&lt;/P&gt;&lt;P&gt;    ID 'SOURCE'      FIELD SOURCE&lt;/P&gt;&lt;P&gt;    ID 'KEY'         FIELD KEY&lt;/P&gt;&lt;P&gt;    ID 'SCR'         FIELD 'X'&lt;/P&gt;&lt;P&gt;    ID 'DESTINATION' FIELD TARGET&lt;/P&gt;&lt;P&gt;    ID 'DSTLEN'      FIELD TARGETLEN.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sergio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Nov 2005 10:54:10 GMT</pubDate>
    <dc:creator>SergioFerrari</dc:creator>
    <dc:date>2005-11-16T10:54:10Z</dc:date>
    <item>
      <title>FM for encryption / decryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968825#M69180</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;can you advice me a any FM for encrypting / decrypting a strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2005 11:39:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968825#M69180</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-02T11:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: FM for encryption / decryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968826#M69181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: user(50).&lt;/P&gt;&lt;P&gt;data: slen type i ,&lt;/P&gt;&lt;P&gt;       key type i value 1303621 .&lt;/P&gt;&lt;P&gt;move: 'abc' to user .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;slen = strlen( user ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'HTTP_SCRAMBLE'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    source            = user&lt;/P&gt;&lt;P&gt;    sourcelen         = slen&lt;/P&gt;&lt;P&gt;    key               = key&lt;/P&gt;&lt;P&gt;  importing&lt;/P&gt;&lt;P&gt;    destination       = user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;other approach&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_HTTP_UTILITY=&amp;gt;IF_HTTP_UTILITY~ENCODE_BASE64&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_HTTP_UTILITY=&amp;gt;IF_HTTP_UTILITY~DECODE_BASE64&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this link for these methods sample usage&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="405445"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2005 11:48:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968826#M69181</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-08-02T11:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: FM for encryption / decryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968827#M69182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marian,&lt;/P&gt;&lt;P&gt;  there is CALCULATE_HASH_FOR_CHAR that calculate some  Cryptographic Hash Function (SHA1/MD5).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function may be helpful for example in encrypting passwords like UNIX does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will helps.&lt;/P&gt;&lt;P&gt;Best regards, Manuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2005 11:51:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968827#M69182</guid>
      <dc:creator>manuel_bassani</dc:creator>
      <dc:date>2005-08-02T11:51:55Z</dc:date>
    </item>
    <item>
      <title>Re: FM for encryption / decryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968828#M69183</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;&lt;/P&gt;&lt;P&gt;try:&lt;/P&gt;&lt;P&gt;- DP_SCRAMBLE_STRING&lt;/P&gt;&lt;P&gt;- SCRAMBLE_STRING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or command &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL 'AB_RFC_X_SCRAMBLE_STRING'
    ID 'SOURCE'      FIELD SOURCE
    ID 'KEY'         FIELD KEY
    ID 'SCR'         FIELD 'X'
    ID 'DESTINATION' FIELD TARGET
    ID 'DSTLEN'      FIELD TARGETLEN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2005 11:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968828#M69183</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-08-02T11:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: FM for encryption / decryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968829#M69184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marian&lt;/P&gt;&lt;P&gt;You can use&lt;/P&gt;&lt;P&gt;FIEB_PASSWORD_ENCRYPT to encrypt and&lt;/P&gt;&lt;P&gt;FIEB_PASSWORD_DECRYPYT to decrypt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2005 12:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968829#M69184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-02T12:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: FM for encryption / decryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968830#M69185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I do not see how to decrypt the encrypted string if I use  DP_SCRAMBLE_STRING or SCRAMBLE_STRING o command&lt;/P&gt;&lt;P&gt; CALL 'AB_RFC_X_SCRAMBLE_STRING'&lt;/P&gt;&lt;P&gt;    ID 'SOURCE'      FIELD SOURCE&lt;/P&gt;&lt;P&gt;    ID 'KEY'         FIELD KEY&lt;/P&gt;&lt;P&gt;    ID 'SCR'         FIELD 'X'&lt;/P&gt;&lt;P&gt;    ID 'DESTINATION' FIELD TARGET&lt;/P&gt;&lt;P&gt;    ID 'DSTLEN'      FIELD TARGETLEN.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Sergio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2005 10:54:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968830#M69185</guid>
      <dc:creator>SergioFerrari</dc:creator>
      <dc:date>2005-11-16T10:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: FM for encryption / decryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968831#M69186</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;Are you searching for these FMs:&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;CALL FUNCTION 'FIEB_PASSWORD_DECRYPT' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anjali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2005 11:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968831#M69186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-16T11:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: FM for encryption / decryption</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968832#M69187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anjali , unfortunatly that functions belong to FI and are available in any R/3 system but I need something in a standalone ABAP SAP Web AS 6.40 system.&lt;/P&gt;&lt;P&gt;Sergio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Nov 2005 07:35:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-for-encryption-decryption/m-p/968832#M69187</guid>
      <dc:creator>SergioFerrari</dc:creator>
      <dc:date>2005-11-17T07:35:40Z</dc:date>
    </item>
  </channel>
</rss>

