home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 February / PCWorld_1999-02_cd.bin / software / servis / Pgp31 / pgpe.doc < prev    next >
Text File  |  1998-03-10  |  3KB  |  74 lines

  1.  
  2. PGPE(1)                          User Manual                          PGPE(1)
  3.  
  4. NAME
  5.   pgpe - Encrypts and signs messages
  6.  
  7. SYNOPSIS
  8.   pgpe -r <recipient> [-s [-u <myid>]] [-o <outfile>] file ...
  9.  
  10.   pgpe -c [-aftz] [-o outfile] file ...
  11.  
  12. DESCRIPTION
  13.   pgpe encrypts and signs files using public key cryptography, or encrypts
  14.   files using conventional cryptography.
  15.  
  16. OPTIONS
  17.   All configuration options can be controlled from the command line.  See
  18.   pgp.cfg(5) for a complete list and how to specify them.
  19.  
  20.   -a, --armor
  21.        Turn on "ASCII Armoring."  This outputs a text-only version of your
  22.        encrypted text.  This makes the result safe for mailing, but about 30%
  23.        larger.
  24.  
  25.   -c   Conventional encrypting mode.  This uses IDEA to encrypt your message.
  26.        As IDEA is a symmetric cipher, no public-key related arguments  -s and
  27.        -u) are accepted with this argument.
  28.  
  29.   -f   Stream mode.  Accepts input on stdin and places output on stdout.  If
  30.        no files are specified as arguments, pgp executes in this mode by
  31.        default.
  32.  
  33.   -o outfile
  34.        Specifies that output should go to outfile.  If not specified, output
  35.        goes to the default filename.  The default filename for each input
  36.        file is the input filename with ".pgp" appended, unless ASCII Armoring
  37.        is turned on, in which case it is ".asc".  It is an error to specify
  38.        multiple input files with this option.
  39.  
  40.   -s   Sign the document as well as encrypting it.  If you wish to sign only,
  41.        use pgps(1).  This will use your default signing key, or the ID of the
  42.        key specified with the -u option.
  43.  
  44.   -t   Turns on text mode.  This causes PGP to convert your input message to
  45.        a platform-independent form.  It is primarily for use when moving
  46.        files from one operating system to another.
  47.  
  48.   -u   Sets the ID of the key used for signing.  This may be a user ID (such
  49.        as foo@bar.baz.com) or a Key ID (such as 0x12345678).  Specifying this
  50.        switch without specifying -s (sign) does nothing.
  51.  
  52.   -z   Batch mode.  See pgp-integration(7) for a discussion of integrating
  53.        pgp support into your application.
  54.  
  55. EXAMPLE
  56.   pgpe -r foo@bar.baz.com -sat document.txt
  57.        Signs and encrypts the file document.txt with ASCII Armoring and text
  58.        mode on to foo@bar.baz.com's key.  The resultant file will be
  59.        document.txt.asc.
  60.  
  61. FILES
  62.   ~/.pgp/pgp.cfg
  63.        User-specific configuration file.  In previous releases, this file was
  64.        called config.txt.  See pgp.cfg(5) for further details.
  65.  
  66. BUGS
  67.        See pgp(1).
  68.  
  69. SEE ALSO
  70.   pgp(1), pgpv(1), pgps(1), pgpk(1),
  71.   pgp.cfg(5),
  72.   pgp-integration(7), http://www.pgp.com (US versions) and
  73.   http://www.pgpi.com (International versions)
  74.