<?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: date cipher in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080408#M738433</link>
    <description>Archive and compress your files using the utility apps of your choice (e.g. 'tar', 'gzip', 'compress', 'bzip2').  Then run the resulting file through 'crypt'.&lt;BR /&gt;&lt;BR /&gt;$ crypt password &amp;lt; infile.tar.gz &amp;gt; outfile.tar.gz&lt;BR /&gt;&lt;BR /&gt;Decrypt by reversing the order of infile and outfile in the above command.&lt;BR /&gt;&lt;BR /&gt;PCS</description>
    <pubDate>Tue, 20 Nov 2007 07:28:40 GMT</pubDate>
    <dc:creator>spex</dc:creator>
    <dc:date>2007-11-20T07:28:40Z</dc:date>
    <item>
      <title>date cipher</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080407#M738432</link>
      <description>Hello Masters!&lt;BR /&gt;&lt;BR /&gt;I'm looking for a tool which can compress some data with password. &lt;BR /&gt;The tool should be integrated part of OS.&lt;BR /&gt;&lt;BR /&gt;Any advice?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Nov 2007 07:17:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080407#M738432</guid>
      <dc:creator>Yarek</dc:creator>
      <dc:date>2007-11-20T07:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: date cipher</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080408#M738433</link>
      <description>Archive and compress your files using the utility apps of your choice (e.g. 'tar', 'gzip', 'compress', 'bzip2').  Then run the resulting file through 'crypt'.&lt;BR /&gt;&lt;BR /&gt;$ crypt password &amp;lt; infile.tar.gz &amp;gt; outfile.tar.gz&lt;BR /&gt;&lt;BR /&gt;Decrypt by reversing the order of infile and outfile in the above command.&lt;BR /&gt;&lt;BR /&gt;PCS</description>
      <pubDate>Tue, 20 Nov 2007 07:28:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080408#M738433</guid>
      <dc:creator>spex</dc:creator>
      <dc:date>2007-11-20T07:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: date cipher</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080409#M738434</link>
      <description>Not particulary secure, but:&lt;BR /&gt;&lt;BR /&gt;crypt &amp;lt; myfile | gzip &amp;gt; myfile.crypt.gz&lt;BR /&gt;&lt;BR /&gt;will do it (you'll be prompted for a key)&lt;BR /&gt;&lt;BR /&gt;uncrypt using&lt;BR /&gt;&lt;BR /&gt;gzcat myfile.crypt.gz | crypt &amp;gt; myfile&lt;BR /&gt;&lt;BR /&gt;Heed the warning about the level of security provided by crypt in the man page:&lt;BR /&gt;&lt;BR /&gt;crypt implements a one-rotor machine designed along the lines of the&lt;BR /&gt;      German Enigma, but with a 256-element rotor.  Methods of attack on&lt;BR /&gt;      such machines are widely known; thus crypt provides minimal security.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Duncan</description>
      <pubDate>Tue, 20 Nov 2007 07:30:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080409#M738434</guid>
      <dc:creator>Duncan Edmonstone</dc:creator>
      <dc:date>2007-11-20T07:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: date cipher</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080410#M738435</link>
      <description>Hi Yarek,&lt;BR /&gt;&lt;BR /&gt;you can compress files with "tar" or "gzip" and then seal it with "crypt" command&lt;BR /&gt;&lt;BR /&gt;This should do it&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Franky</description>
      <pubDate>Tue, 20 Nov 2007 07:30:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080410#M738435</guid>
      <dc:creator>Franky_1</dc:creator>
      <dc:date>2007-11-20T07:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: date cipher</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080411#M738436</link>
      <description>Thank you Masters!</description>
      <pubDate>Tue, 20 Nov 2007 07:40:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080411#M738436</guid>
      <dc:creator>Yarek</dc:creator>
      <dc:date>2007-11-20T07:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: date cipher</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080412#M738437</link>
      <description>Hi Yarek,&lt;BR /&gt;&lt;BR /&gt;don't forget to assign points&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Franky</description>
      <pubDate>Tue, 20 Nov 2007 08:35:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/date-cipher/m-p/5080412#M738437</guid>
      <dc:creator>Franky_1</dc:creator>
      <dc:date>2007-11-20T08:35:40Z</dc:date>
    </item>
  </channel>
</rss>

