update changelog and documentation
This commit is contained in:
parent
8e0597824a
commit
c00f69d7e7
|
@ -2,6 +2,7 @@
|
||||||
Codecrypt ChangeLog
|
Codecrypt ChangeLog
|
||||||
|
|
||||||
|
|
||||||
|
- add support for symmetric encryption (long files!)
|
||||||
- remove RC4 usage from FMTSEQ, replace with ChaCha20, rename algos
|
- remove RC4 usage from FMTSEQ, replace with ChaCha20, rename algos
|
||||||
- fix possible side-channel attack on F-O decryption timing
|
- fix possible side-channel attack on F-O decryption timing
|
||||||
- remove RC4 from standard PRNG
|
- remove RC4 from standard PRNG
|
||||||
|
|
10
README.md
10
README.md
|
@ -57,11 +57,19 @@ margin. Let's play with random data!
|
||||||
ccr -x Unfri
|
ccr -x Unfri
|
||||||
|
|
||||||
#create hashfile from a large file
|
#create hashfile from a large file
|
||||||
ccr -sS hashfile.ccr < big_data.iso
|
ccr -s -S hashfile.ccr < big_data.iso
|
||||||
|
|
||||||
#verify the hashfile
|
#verify the hashfile
|
||||||
ccr -vS hashfile.ccr < the_same_big_data.iso
|
ccr -vS hashfile.ccr < the_same_big_data.iso
|
||||||
|
|
||||||
|
#create symmetric key and encrypt a large file
|
||||||
|
ccr -g sha256,xsynd -S symkey.ccr
|
||||||
|
ccr -eaS symkey.ccr -R big_data.iso -o big_data_encrypted.iso
|
||||||
|
|
||||||
|
#decrypt a large file
|
||||||
|
ccr -daS symkey.ccr <big_data_encrypted.iso >big_data.iso
|
||||||
|
|
||||||
|
|
||||||
## Option reference
|
## Option reference
|
||||||
|
|
||||||
For completeness I add listing of all options here (also available from
|
For completeness I add listing of all options here (also available from
|
||||||
|
|
31
man/ccr.1
31
man/ccr.1
|
@ -109,12 +109,26 @@ When doing "sign" or "verify" operation, do not sign asymmetrically, but
|
||||||
instead generate \fIfile\fR with cryptographic hashes that can later be used to
|
instead generate \fIfile\fR with cryptographic hashes that can later be used to
|
||||||
verify if the contents of input was changed.
|
verify if the contents of input was changed.
|
||||||
|
|
||||||
|
When doing "generate", "encrypt" or "decrypt" operation, do not encrypt
|
||||||
|
asymmetrically, but instead generate or use a file with a key for specified
|
||||||
|
symmetric cipher. Use "-g help" to see available symmetric primitives. For
|
||||||
|
symmetric encryption to work, at least one stream cipher (marked with C) and at
|
||||||
|
least one hash function (marked with H, used to protect agains malleability)
|
||||||
|
separated by comma need to be selected. Additionally, user can specify
|
||||||
|
"longblock" or "shortblock" keyword to manipulate size of internal encryption
|
||||||
|
block structure (longer blocks consume more RAM, but the ciphertext doesn't
|
||||||
|
grow very much); or the "longkey" flag which creates larger symmetric key to
|
||||||
|
provide more key material to the ciphers (which can help to protect against
|
||||||
|
low-quality random numbers, but is generally unneccesary and even considered to
|
||||||
|
be a bad practice). It is also possible to combine more stream ciphers and hash
|
||||||
|
functions.
|
||||||
|
|
||||||
Purpose of the \fB\-\-symmetric\fR option is that symmetric cryptography is a
|
Purpose of the \fB\-\-symmetric\fR option is that symmetric cryptography is a
|
||||||
lot faster than asymmetric, and symmetric primitives usually work also on very
|
lot faster than asymmetric, and symmetric primitives usually work also on very
|
||||||
large files and data streams, as they don't need to be fully copied into
|
large files and data streams, as they don't need to be fully copied into
|
||||||
allocated memory for this purpose. Thus, if working with a large file, process
|
allocated memory for this purpose. Thus, if working with a large file, process
|
||||||
it symetrically first, then process the resulting small \fIfile\fR
|
it symmetrically first, then process the resulting small \fIfile\fR
|
||||||
asymetrically and send it along with the large file.
|
asym,etrically and send it along with the large file.
|
||||||
|
|
||||||
.SS
|
.SS
|
||||||
Key management:
|
Key management:
|
||||||
|
@ -139,8 +153,10 @@ has a name that contains that string.
|
||||||
\fB\-g\fR, \fB\-\-gen\-key\fR <\fIalgorithm\fR>
|
\fB\-g\fR, \fB\-\-gen\-key\fR <\fIalgorithm\fR>
|
||||||
Generate a keypair for usage with specified algorithm. Use "-g help" to get
|
Generate a keypair for usage with specified algorithm. Use "-g help" to get
|
||||||
list of all algorithms available. Listing also contains flags "S" and "E",
|
list of all algorithms available. Listing also contains flags "S" and "E",
|
||||||
meaning that algorithm can be used for signatures or encryption. Algorithm name
|
meaning that algorithm can be used for signatures or encryption, or "H" and "C"
|
||||||
does not need to be a full name, but must match only one available algorithm.
|
for usage with symmetric hashes and ciphers. In asymmetric case (where the
|
||||||
|
algorithm names are long) the supplied algorithm name does not need to be a
|
||||||
|
full name, but must match only one available algorithm.
|
||||||
|
|
||||||
.TP
|
.TP
|
||||||
\fB\-N\fR, \fB\-\-name\fR <\fIkeyname\fR>
|
\fB\-N\fR, \fB\-\-name\fR <\fIkeyname\fR>
|
||||||
|
@ -354,6 +370,13 @@ ccr -sS hashfile.ccr < big_data.iso
|
||||||
|
|
||||||
#verify the hashfile
|
#verify the hashfile
|
||||||
ccr -vS hashfile.ccr < the_same_big_data.iso
|
ccr -vS hashfile.ccr < the_same_big_data.iso
|
||||||
|
|
||||||
|
#create symmetric key and encrypt a large file
|
||||||
|
ccr -g sha256,xsynd -S symkey.ccr
|
||||||
|
ccr -eaS symkey.ccr -R big_data.iso -o big_data_encrypted.iso
|
||||||
|
|
||||||
|
#decrypt a large file
|
||||||
|
ccr -daS symkey.ccr <big_data_encrypted.iso >big_data.iso
|
||||||
.fi
|
.fi
|
||||||
|
|
||||||
.SH DISCLAIMER
|
.SH DISCLAIMER
|
||||||
|
|
Loading…
Reference in a new issue