<?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: Encript Text File in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720865#M948022</link>
    <description>Hi Ricardo,&lt;BR /&gt;&lt;BR /&gt; Take a look at the crypt command for simple encryption/decryption scheme.&lt;BR /&gt;&lt;BR /&gt;man crypt  (1) &amp;amp; (3C)&lt;BR /&gt;&lt;BR /&gt;Takes standard input &amp;amp; writes standard output &amp;amp; uses a "password" as a key where password can be as simple as three lower case chars which can be passed to the recipient in a secure fashion or used by yourself after the ftp arrives.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
    <pubDate>Thu, 09 May 2002 18:38:27 GMT</pubDate>
    <dc:creator>Jeff Schussele</dc:creator>
    <dc:date>2002-05-09T18:38:27Z</dc:date>
    <item>
      <title>Encript Text File</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720863#M948020</link>
      <description>&lt;BR /&gt;Hi All,&lt;BR /&gt;&lt;BR /&gt;I have a txt file &amp;lt; filename.csv &amp;gt; and I want to do:&lt;BR /&gt; 1- Encript the file&lt;BR /&gt; 2- Send by FTP to other machine ( This I know )&lt;BR /&gt; 3- Remove the encript from the file&lt;BR /&gt;&lt;BR /&gt;The solution to encript must be fast and secure.&lt;BR /&gt;&lt;BR /&gt;Tks,&lt;BR /&gt;&lt;BR /&gt;Bassoi</description>
      <pubDate>Thu, 09 May 2002 18:22:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720863#M948020</guid>
      <dc:creator>Ricardo Bassoi</dc:creator>
      <dc:date>2002-05-09T18:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Encript Text File</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720864#M948021</link>
      <description>Hi Ricardo&lt;BR /&gt;&lt;BR /&gt;Couple of ways to do it&lt;BR /&gt;&lt;BR /&gt;1. uuencode&lt;BR /&gt;2. do a tar cvf the fiel to some other file name&lt;BR /&gt;3. ftp that file&lt;BR /&gt;4. untar it&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava</description>
      <pubDate>Thu, 09 May 2002 18:30:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720864#M948021</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-05-09T18:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Encript Text File</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720865#M948022</link>
      <description>Hi Ricardo,&lt;BR /&gt;&lt;BR /&gt; Take a look at the crypt command for simple encryption/decryption scheme.&lt;BR /&gt;&lt;BR /&gt;man crypt  (1) &amp;amp; (3C)&lt;BR /&gt;&lt;BR /&gt;Takes standard input &amp;amp; writes standard output &amp;amp; uses a "password" as a key where password can be as simple as three lower case chars which can be passed to the recipient in a secure fashion or used by yourself after the ftp arrives.&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Jeff</description>
      <pubDate>Thu, 09 May 2002 18:38:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720865#M948022</guid>
      <dc:creator>Jeff Schussele</dc:creator>
      <dc:date>2002-05-09T18:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Encript Text File</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720866#M948023</link>
      <description>Use "crypt" command .. for example ..&lt;BR /&gt;&lt;BR /&gt;# crypt &amp;lt; data &amp;gt; data.secret&lt;BR /&gt;Enter key: &lt;BR /&gt;# ll data.secret&lt;BR /&gt;==&amp;gt; transfer data.secret over&lt;BR /&gt;&lt;BR /&gt;To encrypt .. (on the other side)&lt;BR /&gt;&lt;BR /&gt;# crypt &amp;lt; data.secret &amp;gt; data.txt&lt;BR /&gt;Enter key:&lt;BR /&gt;# ll data.txt&lt;BR /&gt;# cat data.txt&lt;BR /&gt;&lt;BR /&gt;The Enter key part allows you to kindda put in a "password" before you encrypt it and de-crypt it.</description>
      <pubDate>Thu, 09 May 2002 18:40:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720866#M948023</guid>
      <dc:creator>S.K. Chan</dc:creator>
      <dc:date>2002-05-09T18:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Encript Text File</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720867#M948024</link>
      <description>Ricardo,&lt;BR /&gt;&lt;BR /&gt;Use the crypt command:&lt;BR /&gt;&lt;BR /&gt;To encrypt simply pipe the STDOUT of&lt;BR /&gt;the file to "crypt" and redirect it to&lt;BR /&gt;a new file name. Enter a passowrd when&lt;BR /&gt;prompted with "Enter key".&lt;BR /&gt;&lt;BR /&gt;$ cat foo | crypt &amp;gt; foo.e&lt;BR /&gt;Enter key:&lt;BR /&gt;&lt;BR /&gt;To unencrypt simply pipe the STDOUT of&lt;BR /&gt;the encrypted file to "crpyt" and&lt;BR /&gt;redirect it to a new file name. Enter&lt;BR /&gt;a passowrd when prompted with&lt;BR /&gt;"Enter key".&lt;BR /&gt;&lt;BR /&gt;$ cat foo.e | crypt &amp;gt; foo.new&lt;BR /&gt;Enter key:&lt;BR /&gt;&lt;BR /&gt;Hope this helps !&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Shabu</description>
      <pubDate>Thu, 09 May 2002 18:47:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720867#M948024</guid>
      <dc:creator>SHABU KHAN</dc:creator>
      <dc:date>2002-05-09T18:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Encript Text File</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720868#M948025</link>
      <description>&lt;BR /&gt;Thanks to All,&lt;BR /&gt;&lt;BR /&gt;Special thanks to Jeff, Chan and Shabu ! You got a 10 !&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 May 2002 19:13:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/encript-text-file/m-p/2720868#M948025</guid>
      <dc:creator>Ricardo Bassoi</dc:creator>
      <dc:date>2002-05-09T19:13:13Z</dc:date>
    </item>
  </channel>
</rss>

