<?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: Non-reversible hash in SAS7.1 in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705951#M216637</link>
    <description>&lt;P&gt;What &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt; wanted to point out is, that the version of Enterprise Guide is hardly relevant when talking about functions. Important alone is the version of the executing sas-environment. You can check that version by executing&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put &amp;amp;=SysVLong;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 15 Dec 2020 07:46:08 GMT</pubDate>
    <dc:creator>andreas_lds</dc:creator>
    <dc:date>2020-12-15T07:46:08Z</dc:date>
    <item>
      <title>Non-reversible hash in SAS7.1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705870#M216585</link>
      <description>&lt;P&gt;Hi all, I am new to hashing/encypting data. Is there a non-reversible hashing function? I need to hash confidential customer information. I am using Enterprise Guide 7.1. Therefore functions in any version after that wouldn't be accessible for me. Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 23:32:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705870#M216585</guid>
      <dc:creator>cherryhezy</dc:creator>
      <dc:date>2020-12-14T23:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Non-reversible hash in SAS7.1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705876#M216590</link>
      <description>&lt;P&gt;See if the SHA256 function is available.&lt;/P&gt;
&lt;P&gt;Since Enterprise Guide is not my strong point and know that the 7.versions are old-ish I'll leave it up to you to see if available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or run some code like:&lt;/P&gt;
&lt;PRE&gt;data _null_;
   y=sha256('abc');
   z=sha256('access method');
   put y=$hex64.;
   put z=$hex64.;
run;&lt;/PRE&gt;
&lt;P&gt;and see if you get an error. The output in the log varies depending on OS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 23:44:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705876#M216590</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-12-14T23:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Non-reversible hash in SAS7.1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705884#M216596</link>
      <description>&lt;P&gt;The MD5 function is another way of hashing that is irreversible and converting it to hex makes it even harder.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;MyKeyHashed = put(md5(cats('MyHashedKey',MyKeyVar)),$hex10.);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Dec 2020 00:30:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705884#M216596</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2020-12-15T00:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Non-reversible hash in SAS7.1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705887#M216598</link>
      <description>&lt;P&gt;Enterprise Guide is a dumb interface.&lt;/P&gt;
&lt;P&gt;It doesn't run any code.&lt;/P&gt;
&lt;P&gt;The SAS version to which you connect from EG is what validates what you can run.&lt;/P&gt;
&lt;P&gt;Function SHA256 has been around for a while, so you probably can run it.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Dec 2020 00:55:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705887#M216598</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2020-12-15T00:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Non-reversible hash in SAS7.1</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705951#M216637</link>
      <description>&lt;P&gt;What &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt; wanted to point out is, that the version of Enterprise Guide is hardly relevant when talking about functions. Important alone is the version of the executing sas-environment. You can check that version by executing&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put &amp;amp;=SysVLong;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 15 Dec 2020 07:46:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Non-reversible-hash-in-SAS7-1/m-p/705951#M216637</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2020-12-15T07:46:08Z</dc:date>
    </item>
  </channel>
</rss>

