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

  1.  
  2. PGPS(1)                          User Manual                          PGPS(1)
  3.  
  4. NAME
  5.   pgps - Signs messages
  6.  
  7. SYNOPSIS
  8.   pgps [-u <userid>] [-abftv] [-z|-zs]
  9.   [-o <outfile>]
  10.   file ...
  11.  
  12. DESCRIPTION
  13.   pgps signs files using public key cryptography.
  14.  
  15. OPTIONS
  16.   All configuration options can be controlled from the command line.  See
  17.   pgp.cfg(5) for a complete list and how to specify them.
  18.  
  19.   -a, --armor
  20.        Turn on "ASCII Armoring."  This outputs a text-only version of your
  21.        encrypted text.  This makes the result safe for mailing, but about 30%
  22.        larger.  Unlike previous versions of PGP, this also implicitly turns
  23.        on clearsigning (wrapping the signature around your message, leaving
  24.        your message in a readable form).
  25.  
  26.   -b   Detached signature.  Creates a detached signature file (by default,
  27.        file.sig) instead of combining the signature with the message in the
  28.        same file.
  29.  
  30.   -f   Stream mode.  Accepts input on stdin and places output on stdout.  If
  31.        no files are specified as arguments, pgp executes in this mode by
  32.        default.
  33.  
  34.   -o outfile
  35.        Specifies that output should go to outfile.  If not specified, output
  36.        goes to the default filename.  The default filename for each input
  37.        file is the input filename with ".pgp" appended, unless ASCII Armoring
  38.        is turned on, in which case it is ".asc".  If -b (detached signature)
  39.        is specified, the output name for the signature is the input file with
  40.        ".sig" appended.  It is an error to specify multiple input files with
  41.        this option.
  42.  
  43.   -t   Turns on text mode.  This causes PGP to convert your input message to
  44.        a platform-independent form.  It is primarily for use when moving
  45.        files from one operating system to another.
  46.  
  47.   -u   Sets the ID of the key used for signing.  This may be a user ID (like
  48.        foo@bar.baz.com) or a Key ID (like 0x12345678).  If not specified,
  49.        your default signing key is used.  See also the MyName directive in
  50.        pgp.cfg(5).
  51.  
  52.   -z   Batch mode.  See pgp-integration(7) for a discussion of integrating
  53.        pgp support into your application.
  54.  
  55. EXAMPLE
  56.   pgps -u foo@bar.baz.com -bat document.txt
  57.        Creates a detached, ASCII Armored signature for the the file Signs and
  58.        encrypts the file document.txt with foo@bar.baz.com's key.  The resul-
  59.        tant file will be document.txt.sig.
  60.  
  61. FILES
  62.   ~/.pgp/pgp.cfg
  63.        User-specific configuration file.  The file formerly known as
  64.        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), pgpe(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.