<?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: need help in sascode in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/71999#M20829</link>
    <description>This sounds like SAS/Graph using the Annotate facility and PROC GSLIDE - and it sounds also awful complicated for the purpose.&lt;BR /&gt;
&lt;BR /&gt;
I think it would be easier to create a gif file with your name in a circle (using some 3rd party product like Adobe Illustrator) and then include this gif file in your output using ODS.&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
Patrick</description>
    <pubDate>Mon, 02 Feb 2009 11:30:52 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2009-02-02T11:30:52Z</dc:date>
    <item>
      <title>SAS sha-512 Encyption</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/71998#M20828</link>
      <description>Hi, &lt;BR /&gt;
&lt;BR /&gt;
I want to encrypt one of my variable like acct_num using SAS. I know &lt;BR /&gt;
one way to do is MD5(). but i want to like SHA-512 (512 bits). &lt;BR /&gt;
&lt;BR /&gt;
Can anyone help me how to acheive this? &lt;BR /&gt;
&lt;BR /&gt;
Thanks &lt;BR /&gt;
Vinodh

Message was edited by: vinodh</description>
      <pubDate>Mon, 02 Feb 2009 09:47:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/71998#M20828</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-02-02T09:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: need help in sascode</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/71999#M20829</link>
      <description>This sounds like SAS/Graph using the Annotate facility and PROC GSLIDE - and it sounds also awful complicated for the purpose.&lt;BR /&gt;
&lt;BR /&gt;
I think it would be easier to create a gif file with your name in a circle (using some 3rd party product like Adobe Illustrator) and then include this gif file in your output using ODS.&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
Patrick</description>
      <pubDate>Mon, 02 Feb 2009 11:30:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/71999#M20829</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2009-02-02T11:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: need help in sascode</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/72000#M20830</link>
      <description>and the "extra" in ms-Word called WordArt seems designed to do this. &lt;BR /&gt;
Perhaps there are people in the ODS forum who know how to invoke Wordart through the ODS RTF destination..... but that is another forum &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;
 &lt;BR /&gt;
PeterC</description>
      <pubDate>Tue, 03 Feb 2009 09:47:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/72000#M20830</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2009-02-03T09:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: need help in sascode</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/72001#M20831</link>
      <description>you can follow these simple steps that would direct your put statements to output window.&lt;BR /&gt;
&lt;BR /&gt;
data _null_;&lt;BR /&gt;
    file print;&lt;BR /&gt;
    *USE SERIES OF PUT STATEMENTS TO ARRANGE YOUR NAME IN SEMICIRCLE FOR E.G. PUT @40 'V';&lt;BR /&gt;
run;</description>
      <pubDate>Fri, 06 Feb 2009 22:28:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/72001#M20831</guid>
      <dc:creator>NickR</dc:creator>
      <dc:date>2009-02-06T22:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: need help in sascode</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/72002#M20832</link>
      <description>Hi:&lt;BR /&gt;
  If you want to do this using SAS/Graph, then you can use an ANNOTATE data set to write the letters in a semi-circle. There's an annotate example of putting starts in a full circle -- this program is modified from that to place the letters of your name in a semi-circle.&lt;BR /&gt;
 &lt;BR /&gt;
  It's probably not as pretty as WordArt or PaintShop could do, but it -is- possible. You'll have to read in the ANNOTATE and GANNO documentation to see all the possible ways you could change the ANNOTATE data set.&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
     &lt;BR /&gt;
[pre]&lt;BR /&gt;
   /* set the graphics environment */ &lt;BR /&gt;
goptions reset=all border; &lt;BR /&gt;
 &lt;BR /&gt;
** at every 15 degree interval between 0 and 180, write a letter of your name;                   &lt;BR /&gt;
proc format;&lt;BR /&gt;
 value ltr &lt;BR /&gt;
    0  = 'i' &lt;BR /&gt;
   15 = 'r'&lt;BR /&gt;
   30 = 'u'&lt;BR /&gt;
   45 = 'p'&lt;BR /&gt;
   60 = 'p'&lt;BR /&gt;
   75 = 'u'&lt;BR /&gt;
   90 = 'M'&lt;BR /&gt;
  105 = 'h'&lt;BR /&gt;
  120 = 'd'&lt;BR /&gt;
  135 = 'o'&lt;BR /&gt;
  150 = 'n'&lt;BR /&gt;
  165 = 'i'&lt;BR /&gt;
  180 = 'V';&lt;BR /&gt;
run;&lt;BR /&gt;
                      &lt;BR /&gt;
data semicircle; &lt;BR /&gt;
   length function color style $ 8 text $ 30; &lt;BR /&gt;
   retain xsys ysys hsys '3'; &lt;BR /&gt;
                         &lt;BR /&gt;
      /* draw the frame */ &lt;BR /&gt;
   function='frame'; output; &lt;BR /&gt;
                    &lt;BR /&gt;
      /* define the footnote */ &lt;BR /&gt;
   function='label'; x=92; y=5; text='SemiCIRCLE'; &lt;BR /&gt;
      style='swiss'; size=3; position='5'; output; &lt;BR /&gt;
                       &lt;BR /&gt;
      /* define the title */ &lt;BR /&gt;
   x=50; y=90; text='Semi-Circle Text'; &lt;BR /&gt;
      style='swissb'; size=6; output; &lt;BR /&gt;
                        &lt;BR /&gt;
     /* draw the background */ &lt;BR /&gt;
   function='move'; x=20; y=30; output; &lt;BR /&gt;
   function='bar'; x=80; y=80; color='white'; &lt;BR /&gt;
      line=3; style='solid'; output; &lt;BR /&gt;
                       &lt;BR /&gt;
     /* draw the semi-circle of letters */ &lt;BR /&gt;
   do ltr_ang=0 to 180 by 15; &lt;BR /&gt;
      ltr = put(ltr_ang,ltr.);&lt;BR /&gt;
                &lt;BR /&gt;
      function='piecntr'; x=50; y=55; size=15; output; &lt;BR /&gt;
      function='piexy'; size=1; angle=ltr_ang; output; &lt;BR /&gt;
      function='cntl2txt'; output; &lt;BR /&gt;
      function='label'; style='swissb'; text=ltr; &lt;BR /&gt;
         angle=0; color='black'; size=3; x=.; y=.; &lt;BR /&gt;
         output; &lt;BR /&gt;
   end; &lt;BR /&gt;
run; &lt;BR /&gt;
&lt;BR /&gt;
                           &lt;BR /&gt;
ods listing;&lt;BR /&gt;
ods html path='c:\temp' (url=none)&lt;BR /&gt;
         gpath='c:\temp' (url=none)&lt;BR /&gt;
         file='annoexamp.html' style=sasweb;&lt;BR /&gt;
   goptions device=gif;&lt;BR /&gt;
              &lt;BR /&gt;
   /* generate the output from */ &lt;BR /&gt;
   /* the Annotate data set    */ &lt;BR /&gt;
proc ganno annotate=semicircle; &lt;BR /&gt;
run; &lt;BR /&gt;
quit; &lt;BR /&gt;
       &lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Sat, 07 Feb 2009 02:23:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-sha-512-Encyption/m-p/72002#M20832</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2009-02-07T02:23:31Z</dc:date>
    </item>
  </channel>
</rss>

