docs update

This commit is contained in:
Mirek Kratochvil 2014-04-11 11:55:30 +02:00
parent 8d43c29988
commit 80aed3c476
2 changed files with 14 additions and 14 deletions

View file

@ -29,9 +29,10 @@ There is a complete, UNIXy manual page supplied with the package. You can view i
Everything is meant to work mostly like GnuPG, but with some good simplicity Everything is meant to work mostly like GnuPG, but with some good simplicity
margin. Let's play with random data! margin. Let's play with random data!
ccr -g help ccr -g help
ccr -g fmtseq128-sha --name "John Doe" # your signature key ccr -g sig --name "John Doe" # your signature key
ccr -g mceqd128 --name "John Doe" # your encryption key ccr -g enc --name "John Doe" # your encryption key
ccr -K #watch the generated keys ccr -K #watch the generated keys
ccr -k ccr -k
@ -57,18 +58,17 @@ 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 -s -S hashfile.ccr < big_data.iso 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 #create (ascii-armored) symmetric key and encrypt a large file
ccr -g sha256,xsynd -S symkey.ccr ccr -g sha256,chacha20 -aS symkey.asc
ccr -eaS symkey.ccr -R big_data.iso -o big_data_encrypted.iso ccr -eaS symkey.asc -R big_data.iso -o big_data_encrypted.iso
#decrypt a large file #decrypt a large file
ccr -daS symkey.ccr <big_data_encrypted.iso >big_data.iso ccr -daS symkey.asc <big_data_encrypted.iso >big_data.iso
## Option reference ## Option reference

View file

@ -339,8 +339,8 @@ Following commands roughly demonstrate command line usage of \fBccr\fR:
.nf .nf
.sp .sp
ccr -g help ccr -g help
ccr -g fmtseq128-sha --name "John Doe" # your signature key ccr -g sig --name "John Doe" # your signature key
ccr -g mceqd128 --name "John Doe" # your encryption key ccr -g enc --name "John Doe" # your encryption key
ccr -K #watch the generated keys ccr -K #watch the generated keys
ccr -k ccr -k
@ -371,12 +371,12 @@ 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 #create (ascii-armored) symmetric key and encrypt a large file
ccr -g sha256,xsynd -S symkey.ccr ccr -g sha256,chacha20 -aS symkey.asc
ccr -eaS symkey.ccr -R big_data.iso -o big_data_encrypted.iso ccr -eaS symkey.asc -R big_data.iso -o big_data_encrypted.iso
#decrypt a large file #decrypt a large file
ccr -daS symkey.ccr <big_data_encrypted.iso >big_data.iso ccr -daS symkey.asc <big_data_encrypted.iso >big_data.iso
.fi .fi
.SH DISCLAIMER .SH DISCLAIMER