From b9421dc80af485591a9c50cc8921f912e0def11e Mon Sep 17 00:00:00 2001 From: Ashlee Young Date: Fri, 23 Oct 2015 10:05:40 -0700 Subject: Removing sources to replace with download links instead. Change-Id: Ie28789a725051aec0d1b04dd291b7690a7898668 Signed-off-by: Ashlee Young --- .../ant/apache-ant-1.9.6/manual/Tasks/genkey.html | 125 --------------------- 1 file changed, 125 deletions(-) delete mode 100644 framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html (limited to 'framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html') 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 deleted file mode 100644 index 96959c2f..00000000 --- a/framework/src/ant/apache-ant-1.9.6/manual/Tasks/genkey.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - -GenKey Task - - - - -

GenKey

-

Description

-

Generates a key in a keystore.

- -

Parameters

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AttributeDescriptionRequired
aliasthe alias to add underYes.
storepasspassword for keystore integrity. Must - be at least 6 characters longYes.
keystorekeystore locationNo
storetypekeystore typeNo
keypasspassword for private key (if different)No
sigalgthe algorithm to use in signingNo
keyalgthe method to use when generating name-value pairNo
verbose(true | false) verbose output when signingNo
dnameThe distinguished name for entityYes if dname element unspecified
validity(integer) indicates how many days certificate is validNo
keysize(integer) indicates the size of key generatedNo
- -

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 (",") are replaced -with "\,".

- -

The following two examples are identical:

- -

Examples

-
-<genkey alias="apache-group" storepass="secret" 
-  dname="CN=Ant Group, OU=Jakarta Division, O=Apache.org, C=US"/>
-
- -
-
-<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>
-
- - - - - -- cgit 1.2.3-korg