AppendClientCertificateRequest (Stringlist function): Difference between revisions
m (→Syntax terms) |
m (→Syntax terms) |
||
Line 21: | Line 21: | ||
<td>A string that is the city name to be specified on the request.</td></tr> | <td>A string that is the city name to be specified on the request.</td></tr> | ||
<tr><th><var>Organization</var></th> | <tr><th><var>Organization</var></th> | ||
<td>string</td></tr> | <td>string. For example, a company name.</td></tr> | ||
<tr><th><var>OrganizationalUnit</var></th> | <tr><th><var>OrganizationalUnit</var></th> | ||
<td>string</td></tr> | <td>string. For example, a department within a company.</td></tr> | ||
<tr><th><var>CommonName</var></th> | <tr><th><var>CommonName</var></th> | ||
<td>string</td></tr> | <td>string. For example, a host name like www.sirius-software.com.</td></tr> | ||
<tr><th><var>Challenge</var></th> | <tr><th><var>Challenge</var></th> | ||
<td>A string that is the expected authentication challenge data.</td></tr> | <td>A string that is the expected authentication challenge data/password. You might need to identify the type of authentication, for example, certificate-based authentication.</td></tr> | ||
</table> | </table> | ||
Revision as of 22:34, 11 May 2012
Add client certificate request to a Stringlist (Stringlist class)
[Requires Janus Network Security]
This callable method generates an SSL client certificate request from a given private key, and it adds the request lines to the end of a Stringlist.
Syntax
[%rc =] sl:AppendClientCertificateRequest( [PublicKey=] string, - [[Country=] string], - [[State=] string], - [[City=] string], - [[Organization=] string], - [[OrganizationalUnit=] string], - [[CommonName=] string], - [[Challenge=] string], - [SignatureAlgorithm= digestAlgorithm])
Syntax terms
%rc | An, optional, numeric variable that is set to zero if the function is a success. The possible return codes are described below in "Return codes". |
---|---|
sl | Stringlist object |
PrivateKey | This name allowed parameter is a Stringlist object that contains an RSA-generated private key. |
Country | string |
State | A string that is the state or province name to be specified on the request. |
City | A string that is the city name to be specified on the request. |
Organization | string. For example, a company name. |
OrganizationalUnit | string. For example, a department within a company. |
CommonName | string. For example, a host name like www.sirius-software.com. |
Challenge | A string that is the expected authentication challenge data/password. You might need to identify the type of authentication, for example, certificate-based authentication. |
Usage notes
Examples
See also
- AppendCertificateInfo
- AppendCertificateRequest
- AppendCertificateRequestInfo
- AppendPrivateKeyInfo
- AppendSignedCertificate
- AppendSignedClientCertificate
- CheckCertificate
- CheckCertificateRequest