diff options
author | Ashlee Young <ashlee@onosfw.com> | 2015-10-23 10:00:02 -0700 |
---|---|---|
committer | Ashlee Young <ashlee@onosfw.com> | 2015-10-23 10:00:02 -0700 |
commit | 753a6c60f47f3ac4f270005b65e9d6481de8eb68 (patch) | |
tree | 3d0a1ae3b4d994550f6614b417b991eee3eb8911 /framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html | |
parent | c62d20eb3b4620c06d833be06f50b2600d96dd42 (diff) |
Adding maven and ant source trees
Change-Id: I0a39b9add833a31b9c3f98d193983ae2f3a5a445
Signed-off-by: Ashlee Young <ashlee@onosfw.com>
Diffstat (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html')
-rw-r--r-- | framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html new file mode 100644 index 00000000..96959c2f --- /dev/null +++ b/framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html @@ -0,0 +1,125 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<html> + +<head> +<meta http-equiv="Content-Language" content="en-us"> +<link rel="stylesheet" type="text/css" href="../stylesheets/style.css"> +<title>GenKey Task</title> +</head> + +<body> + +<h2><a name="genkey">GenKey</a></h2> +<h3>Description</h3> +<p>Generates a key in a keystore. </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 commas ("<code>,</code>") are replaced +with "<code>\,</code>".</p> + +<p>The following two examples are identical: </p> + +<h3>Examples</h3> +<blockquote><pre> +<genkey alias="apache-group" storepass="secret" + dname="CN=Ant Group, OU=Jakarta Division, O=Apache.org, C=US"/> +</pre></blockquote> + +<blockquote> + <pre> +<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></pre> +</blockquote> + + +</body> +</html> + |