[Python-modules-commits] r28120 - in packages/python-keyczar/trunk/debian (3 files)
chrisk-guest at users.alioth.debian.org
chrisk-guest at users.alioth.debian.org
Mon Mar 10 13:03:03 UTC 2014
Date: Monday, March 10, 2014 @ 13:03:02
Author: chrisk-guest
Revision: 28120
Add manpage for keyczart(1)
Added:
packages/python-keyczar/trunk/debian/keyczart.1
packages/python-keyczar/trunk/debian/manpages
Modified:
packages/python-keyczar/trunk/debian/changelog
Modified: packages/python-keyczar/trunk/debian/changelog
===================================================================
--- packages/python-keyczar/trunk/debian/changelog 2014-03-10 13:02:35 UTC (rev 28119)
+++ packages/python-keyczar/trunk/debian/changelog 2014-03-10 13:03:02 UTC (rev 28120)
@@ -7,6 +7,7 @@
[ Christian Kastner ]
* New upstream release. Closes: #699872
+ - Expose the CLI tool /usr/bin/keyczart
* debian/copyright:
- Update to machine-readable format v1.0
- Refresh copyright years
@@ -18,8 +19,10 @@
- Add X-Python-Version with >= 2.6, thereby implicitly dropping support for
Python 2.5(it used to be supported in the now removed debian/pyversions).
This allows us to simplify some things, such as:
- - Drop dependency on python-simplejson. This was only relevant for Python
- versions << 2.6
+ - Drop the Build-Depends for python (>= 2.6.6-14~) | pythons-simplejson.
+ This was only needed to ensure that either Python 2.5 was not installed
+ or else that python-simplejson was installed.
+ - Add Build-Depends for python-setuptools. Upstream switch build mechanism
- Add XS-Testsuite: autopkgtest
* debian/compat:
- Bump debhelper compatibility level to 9
@@ -27,6 +30,7 @@
- Drop the get-orig-source target (no longer needed)
- Convert build process to dh_python2
- Drop unit test running for Python << 2.6 (no longer supported)
+ - Remove the egg-info directory during clean
- Upstream moved location of unit tests
* debian/svn-orig-source.sh
- Drop (no longer needed)
Added: packages/python-keyczar/trunk/debian/keyczart.1
===================================================================
--- packages/python-keyczar/trunk/debian/keyczart.1 (rev 0)
+++ packages/python-keyczar/trunk/debian/keyczart.1 2014-03-10 13:03:02 UTC (rev 28120)
@@ -0,0 +1,58 @@
+.TH KEYCZART 1 "2014-03-10" "keyczart" KEYCZART
+.SH NAME
+keyczart \- asymmetric key management tool
+.SH SYNOPSIS
+.B keyczart
+<command> <flags>
+.br
+.SH DESCRIPTION
+This manual page documents briefly the
+.B keyczart
+command, a tool which can be used to create and manage asymmetric keys.
+Currently, the supported key types are RSA and DSA.
+.SH GENERAL OPTIONS
+\fBkeyczart\fP supports the following commands and options:
+.PP
+\fBcreate\fP \-\-location=\fIKEYPATH\fP \-\-purpose=\fIPURPOSE\fP [
+\-\-name=\fINAME\fP \-\-asymmetric=\fITYPE\fP ]
+.IP
+Creates a new, empty key set in the given location and the given purpose, which
+must be one of either "crypt" or "sign". The key set may optionally be given a
+name, and the key type can be chosen as well, in which case must be one of
+either "rsa" or "dsa". The "dsa" asymmetric value is valid only for sets
+with "sign" purpose.
+.PP
+\fBaddkeys\fP \-\-location=\fIKEYPATH\fP [ \-\-status=\fISTATUS\fP
+\-\-size=\fISIZE\fP \-\-crypter=\fILOCATION\fP ]
+.IP
+Adds a new key to an existing key set. One can optionally specify a status,
+which can be one of either of "active" or "primary", with "active" being the
+default. The key size in bits can also be specified, as can the location of a
+set of crypting keys which will be used to encrypt this key set.
+.PP
+\fBpubkey\fP \-\-location=\fIKEYPATH\fP \-\-destination=\fIDEST\fP
+.IP
+Extracts public keys from a given key set and writes them to the destination.
+The \fBpubkey\fP command Only works for key sets that were created with
+the \fB--asymmetric\fP flag.
+.PP
+\fBpromote\fP \-\-location=\fIKEYPATH\fP \-\-version=\fINUMBER\fP
+.IP
+Promotes the status of the given key version in the given location. Active keys
+are promoted to primary (which demotes any existing primary key to active). Keys
+scheduled for revocation are promoted to be active.
+.PP
+\fBdemote\fP \-\-location=\fIKEYPATH\fP \-\-version=\fINUMBER\fP
+.IP
+Demotes the status of the given key version in the given location. Primary keys
+are demoted to active. Active keys are scheduled for revocation.
+.PP
+\fBrevoke\fP \-\-location=\fIKEYPATH\fP \-\-version=\fINUMBER\fP
+.IP
+Revokes the key of the given version number. This key must have been scheduled
+for revocation by the promote command. \fBWARNING\fP: The key will be destroyed.
+.SH AUTHOR
+\fBkeyczart\fP was written by members of the Google Security Team.
+.PP
+This manual page was written by Christian Kastner <debian at kvr.at>
+for the Debian project (and may be used by others).
Added: packages/python-keyczar/trunk/debian/manpages
===================================================================
--- packages/python-keyczar/trunk/debian/manpages (rev 0)
+++ packages/python-keyczar/trunk/debian/manpages 2014-03-10 13:03:02 UTC (rev 28120)
@@ -0,0 +1 @@
+debian/keyczart.1
More information about the Python-modules-commits
mailing list