mirror of
https://github.com/apache/ant.git
synced 2025-05-18 14:04:48 +00:00
(1) Make sure there is a Copyright notice on all visible files. (2) Make sure all years in which the file has been modified are listed. (3) Make sure the format is consistent, i.e. separate consecutive years with a dash, not a comma. When Stephane changed starteam.html it has been 2001 in France but 2002 in Australia - does that mean we add 2002 to the Copyright line or not? ;-) git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270652 13f79535-47bb-0310-9956-ffa450edef68
105 lines
3.2 KiB
HTML
105 lines
3.2 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<meta http-equiv="Content-Language" content="en-us">
|
|
<title>GenKey</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h2><a name="genkey">GenKey</a></h2>
|
|
<h3>Description</h3>
|
|
<p>Generates a key in keystore. This task needs Java1.2 or later</p>
|
|
|
|
<h3>Parameters</h3>
|
|
<table border="1" cellpadding="2" cellspacing="0">
|
|
<tr>
|
|
<td valign="top"><b>Attribute</b></td>
|
|
<td valign="top"><b>Description</b></td>
|
|
<td align="center" valign="top"><b>Required</b></td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">alias</td>
|
|
<td valign="top">the alias to add under</td>
|
|
<td valign="top" align="center">Yes.</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">storepass</td>
|
|
<td valign="top">password for keystore integrity. Must
|
|
be at least 6 characters long</td>
|
|
<td valign="top" align="center">Yes.</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">keystore</td>
|
|
<td valign="top">keystore location</td>
|
|
<td valign="top" align="center">No</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">storetype</td>
|
|
<td valign="top">keystore type</td>
|
|
<td valign="top" align="center">No</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">keypass</td>
|
|
<td valign="top">password for private key (if different)</td>
|
|
<td valign="top" align="center">No</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">sigalg</td>
|
|
<td valign="top">the algorithm to use in signing</td>
|
|
<td valign="top" align="center">No</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">keyalg</td>
|
|
<td valign="top">the method to use when generating name-value pair</td>
|
|
<td valign="top" align="center">No</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">verbose</td>
|
|
<td valign="top">(true | false) verbose output when signing</td>
|
|
<td valign="top" align="center">No</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">dname</td>
|
|
<td valign="top">The distinguished name for entity</td>
|
|
<td valign="top" align="center">Yes if dname element unspecified</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">validity</td>
|
|
<td valign="top">(integer) indicates how many days certificate is valid</td>
|
|
<td valign="top" align="center">No</td>
|
|
</tr>
|
|
<tr>
|
|
<td valign="top">keysize</td>
|
|
<td valign="top">(integer) indicates the size of key generated</td>
|
|
<td valign="top" align="center">No</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p>Alternatively you can specify the distinguished name by creating a sub-element named dname and populating it with param elements that have a name and a value. When using the subelement it is automatically encoded properly and , are replace</p>
|
|
<p>The following two examples are identical: </p>
|
|
|
|
<h3>Examples</h3>
|
|
<blockquote>
|
|
<p><code><genkey alias="apache-group" storepass="secret"
|
|
dname="CN=Ant Group, OU=Jakarta Division, O=Apache.org, C=US"/></code></p>
|
|
</blockquote>
|
|
|
|
<blockquote>
|
|
<pre><code><genkey alias="apache-group" storepass="secret" >
|
|
<dname>
|
|
<param name="CN" value="Ant Group"/>
|
|
<param name="OU" value="Jakarta Division"/>
|
|
<param name="O" value="Apache.Org"/>
|
|
<param name="C" value="US"/>
|
|
</dname>
|
|
</genkey></code></pre>
|
|
</blockquote>
|
|
<hr>
|
|
<p align="center">Copyright © 2001 Apache Software Foundation. All rights
|
|
Reserved.</p>
|
|
|
|
</body>
|
|
</html>
|
|
|