<?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 Decryption of csv file after importing in sas in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401205#M97316</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;Is it possible to import CSV&amp;nbsp;and decrypt data column which is AES encrypted via key?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;GP&lt;/P&gt;</description>
    <pubDate>Thu, 05 Oct 2017 07:25:27 GMT</pubDate>
    <dc:creator>gauravp1993</dc:creator>
    <dc:date>2017-10-05T07:25:27Z</dc:date>
    <item>
      <title>Decryption of csv file after importing in sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401205#M97316</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;Is it possible to import CSV&amp;nbsp;and decrypt data column which is AES encrypted via key?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;GP&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 07:25:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401205#M97316</guid>
      <dc:creator>gauravp1993</dc:creator>
      <dc:date>2017-10-05T07:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Decryption of csv file after importing in sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401214#M97321</link>
      <description>&lt;P&gt;No, I don't think this is possible. An encrypted file is binary, not text.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 07:49:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401214#M97321</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2017-10-05T07:49:32Z</dc:date>
    </item>
    <item>
      <title>Re: Decryption of csv file after importing in sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401225#M97322</link>
      <description>&lt;P&gt;Hi Andreas,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Only two column out of 8 has been encrypted using AES&amp;nbsp;and being collectively sent as csv file. Is it&amp;nbsp;still not possible to decrypt?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 08:16:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401225#M97322</guid>
      <dc:creator>gauravp1993</dc:creator>
      <dc:date>2017-10-05T08:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: Decryption of csv file after importing in sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401230#M97324</link>
      <description>&lt;P&gt;So you are saying you have a text file, which has several data columns divided by commas, and some of those data columns have had some algorithm applied to them.&amp;nbsp; If so then you need access to that algorithm and the solving code, and then you would apply it to the data once you have read the data into SAS.&amp;nbsp; There is no un-encode coded data function as far as I am aware.&amp;nbsp; I would ask why you have chosen to go this route in the first place of encoding some data.&amp;nbsp; It would be far simpler, and more secure, to protect the whole file - most apps can do it, e.g. zip - and send the whole file like that via secure FTP or Web Portal.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 08:26:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401230#M97324</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-10-05T08:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: Decryption of csv file after importing in sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401237#M97330</link>
      <description>&lt;P&gt;Only if the encrypted value was converted to readable code, eg with base64 encoding.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because encryption would get you values that sooner or later will contain delimiters and therefore break your file structure. Raw encrypted values and separators don't work together.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And from the documentation I get it that only complete files, not separate columns, can be encrypted.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 08:46:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401237#M97330</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-10-05T08:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: Decryption of csv file after importing in sas</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401367#M97376</link>
      <description>You can encrypt/encode specific fields and store the result. Like if you create a hash in SAS with md5 and then create file using the hex. format as an example.&lt;BR /&gt;But like mentioned above there is no decrypt function in SAS. But if you have access to a third party binary you can call it from SAS using CALL MODULE.</description>
      <pubDate>Thu, 05 Oct 2017 14:48:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Decryption-of-csv-file-after-importing-in-sas/m-p/401367#M97376</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2017-10-05T14:48:19Z</dc:date>
    </item>
  </channel>
</rss>

