diff --git a/VERSION b/VERSION index f477849..373f8c6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2.2 \ No newline at end of file +0.2.3 \ No newline at end of file diff --git a/man/options.pod b/man/options.pod index 913e347..3eb2966 100644 --- a/man/options.pod +++ b/man/options.pod @@ -79,6 +79,10 @@ the message symetrically. This is the same as -m (self-encryption mode). Add -z to ascii armor the output using Z85. + -A --anonymous Use anonymous sender key pair instead or + your own primary key pair. In this mode the + recipient doesn't need to have your public + key. -m --encrypt-me Sym-Encrypt a message. Specify -I and/or -O for input/output file. You will be asked for a passphrase. No key material will diff --git a/man/pcp1.pod b/man/pcp1.pod index c334088..0c8d139 100644 --- a/man/pcp1.pod +++ b/man/pcp1.pod @@ -9,7 +9,7 @@ Pretty Curved Privacy - File encryption using eliptic curve cryptography. Usage: pcp1 [ --help | --version ] [ --keygen | --listkeys | --remove-key | --edit-key ] [ --export-public | --export-secret | --import ] - [ --encrypt | --decrypt ] + [ --encrypt | --decrypt ] [ --sign | --check-signature ] [ arguments ] @@ -38,6 +38,7 @@ Pretty Curved Privacy - File encryption using eliptic curve cryptography. Encryption Options: -e --encrypt Asym-Encrypt a message. If none of -i or -r has been given, encrypt the message symetrically. + -A --anonymous Use anonymous sender key pair. -m --encrypt-me Symetrically encrypt a message. -d --decrypt Decrypt a message. @@ -134,6 +135,10 @@ Pretty Curved Privacy - File encryption using eliptic curve cryptography. the message symetrically. This is the same as -m (self-encryption mode). Add -z to ascii armor the output using Z85. + -A --anonymous Use anonymous sender key pair instead or + your own primary key pair. In this mode the + recipient doesn't need to have your public + key. -m --encrypt-me Sym-Encrypt a message. Specify -I and/or -O for input/output file. You will be asked for a passphrase. No key material will diff --git a/src/usage.h b/src/usage.h index a6b7a71..7146e79 100644 --- a/src/usage.h +++ b/src/usage.h @@ -4,7 +4,7 @@ "Usage: pcp1 [ --help | --version ]\n" \ " [ --keygen | --listkeys | --remove-key | --edit-key ]\n" \ " [ --export-public | --export-secret | --import ]\n" \ -" [ --encrypt | --decrypt ]\n" \ +" [ --encrypt | --decrypt ]\n" \ " [ --sign | --check-signature ]\n" \ " [ arguments ]\n" \ "\n" \ @@ -33,6 +33,7 @@ "Encryption Options:\n" \ "-e --encrypt Asym-Encrypt a message. If none of -i or -r\n" \ " has been given, encrypt the message symetrically.\n" \ +"-A --anonymous Use anonymous sender key pair.\n" \ "-m --encrypt-me Symetrically encrypt a message.\n" \ "-d --decrypt Decrypt a message.\n" \ "\n" \ diff --git a/src/usage.txt b/src/usage.txt index c4b2cd8..22ff412 100644 --- a/src/usage.txt +++ b/src/usage.txt @@ -2,7 +2,7 @@ Usage: pcp1 [ --help | --version ] [ --keygen | --listkeys | --remove-key | --edit-key ] [ --export-public | --export-secret | --import ] - [ --encrypt | --decrypt ] + [ --encrypt | --decrypt ] [ --sign | --check-signature ] [ arguments ] @@ -31,6 +31,7 @@ Keymanagement Options: Encryption Options: -e --encrypt Asym-Encrypt a message. If none of -i or -r has been given, encrypt the message symetrically. +-A --anonymous Use anonymous sender key pair. -m --encrypt-me Symetrically encrypt a message. -d --decrypt Decrypt a message.