Create gh-pages branch via GitHub

This commit is contained in:
Moinak Ghosh 2013-03-07 08:53:20 -08:00
parent 02ac25e560
commit f61d9993be
2 changed files with 16 additions and 8 deletions

View file

@ -208,13 +208,17 @@ Other flags:
LZP internally as well.</p> LZP internally as well.</p>
<pre><code>Encryption flags: <pre><code>Encryption flags:
'-e' Encrypt chunks with AES. The password can be prompted from the user '-e &lt;ALGO&gt;'
or read from a file. Whether 128-Bit or 256-Bit keys are used depends Encrypt chunks using the given encryption algorithm. The algo parameter
on how the pcompress binary was built. Default build uses 128-Bit keys. can be one of AES or SALSA20. Both are used in CTR stream encryption
Unique keys are generated every time pcompress is run even when giving mode.
the same password. Of course enough info is stored in the compressed The password can be prompted from the user or read from a file. Unique
file so that the key used for the file can be re-created given the keys are generated every time pcompress is run even when giving the same
correct password. password. Of course enough info is stored in the compresse file so that
the key used for the file can be re-created given the correct password.
Default key length if 256 bits but can be reduced to 128 bits using the
'-k' option.
The Scrypt algorithm from Tarsnap is used The Scrypt algorithm from Tarsnap is used
(See: http://www.tarsnap.com/scrypt.html) for generating keys from (See: http://www.tarsnap.com/scrypt.html) for generating keys from
@ -224,6 +228,10 @@ Other flags:
Provide a file which contains the encryption password. This file must Provide a file which contains the encryption password. This file must
be readable and writable since it is zeroed out after the password is be readable and writable since it is zeroed out after the password is
read. read.
'-k &lt;key length&gt;'
Specify the key length. Can be 16 for 128 bit keys or 32 for 256 bit
keys. Default value is 32 for 256 bit keys.
</code></pre> </code></pre>
<p>NOTE: When using pipe-mode via -p the only way to provide a password is to use '-w'.</p> <p>NOTE: When using pipe-mode via -p the only way to provide a password is to use '-w'.</p>

File diff suppressed because one or more lines are too long