<?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: Decrypt using Triple-DES algorithm in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723232#M315496</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your prompt answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like I said on a previous post, I have all the encrypted data into the tables and also the private key on my own. The algorithm used is a symmetric algorithm called Triple-DES. So, I think that I have all that I need... This is not a typical case of public key infrastructure, but a private/secret key infrastructure. However, I can't find a function module that handles this algorithm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any suggestion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Ricardo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Nov 2006 09:28:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-03T09:28:59Z</dc:date>
    <item>
      <title>Decrypt using Triple-DES algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723230#M315494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The scenario is: My client receives messages in XML format; some of the fields are encrypted with algorithm Triple-DES. This information is stored into a Z table of a SAP ERP 2005. The idea is develop an ABAP report that reads this table and decrypt the encrypted fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already read all most information about Triple-DES on SAP help. The SSF (Secure Store and Forward) supports this kind algorithm. But a contradiction happens, the Triple-DES is a symmetric algorithm (the same key is used to encrypt and decrypt data), however, the infrastructure mentioned on a SAP Help shows only the public key technology (asymmetric cryptography). Also SFF functions have parameters to fill, like recipient information, etc&amp;#133; it means that those functions are to be used with public key algorithm? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I have all the encrypted data into the tables and also the private key on my own, I think that I only need to call a function to decrypt data. So, it means only a SSF_DEVELOPE function is necessary? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have more questions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the safe place to save the private key? (Transaction)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which extra configurations I need to do to start my ABAP report?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which functions of a SSFG function group I need to use? Like I said before I think that I only need to decrypt the encrypted data, so it means only a SSF_DEVELOPE function is necessary?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ricardo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Nov 2006 16:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723230#M315494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-02T16:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Decrypt using Triple-DES algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723231#M315495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Never store a private key on a server, then it is no longer private.&lt;/P&gt;&lt;P&gt;Furthermore SSF_DEVELOPE has the paramter STR_FORMAT with default value 'PKCS7'. That means that this is a FM for extracting data from a digital signature which is ASN.1 DER encoded in a PKCS7 container. &lt;/P&gt;&lt;P&gt;What you need is a Public Key Infrastructure somewhere on your server or on another server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 08:58:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723231#M315495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T08:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: Decrypt using Triple-DES algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723232#M315496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your prompt answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like I said on a previous post, I have all the encrypted data into the tables and also the private key on my own. The algorithm used is a symmetric algorithm called Triple-DES. So, I think that I have all that I need... This is not a typical case of public key infrastructure, but a private/secret key infrastructure. However, I can't find a function module that handles this algorithm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any suggestion?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Ricardo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 09:28:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723232#M315496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T09:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Decrypt using Triple-DES algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723233#M315497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I couldn't find a SSF module which is providing what you need. But check this:&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://www.sap.com/partners/icc/scenarios/pdf/bc_ssf_api.pdf"&amp;gt;http://www.sap.com/partners/icc/scenarios/pdf/bc_ssf_api.pdf&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 09:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723233#M315497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T09:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Decrypt using Triple-DES algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723234#M315498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot Thomas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this guide only mentions a public key (asymmetric infrastructure). I need a symmetric infrastructure (secret key) and I can&amp;#146;t find any ABAP information related. I'm getting believe that is not possible doing data encryption with symmetric algorithms without a whole public key infrastructure defined. I will search a little bit more&amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Ricardo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Nov 2006 10:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723234#M315498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-03T10:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Decrypt using Triple-DES algorithm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723235#M315499</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;For your information, I would like to tell you that the problem of my customer was fixed without SSF functions &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used the advantage of XI that it has and develop an interface between SAP ERP and XI via ABAP proxy. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The scenario is: on se38 runs a report that calls an outbound synchronous method of ABAP proxy. The encrypted fields are sent to XI, in your turn; XI sends the message to the inbound interface (also ABAP proxy). This inbound interface has a simple role of send the message back as it has (ex. move input to output.). Between interface, I develop a java mapping and inside of them, I call a crypto class with TDES algorithm and with the own key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works fine and the customer is satisfied &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for all,&lt;/P&gt;&lt;P&gt;Ricardo Pereira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Nov 2006 12:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/decrypt-using-triple-des-algorithm/m-p/1723235#M315499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-10T12:31:58Z</dc:date>
    </item>
  </channel>
</rss>

