AppendClientCertificateRequest (Stringlist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 27: Line 27:
<td>string</td></tr>
<td>string</td></tr>
<tr><th><var>Challenge</var></th>
<tr><th><var>Challenge</var></th>
<td>A string that is the expected challenge data.</td></tr>
<td>A string that is the expected authentication challenge data.</td></tr>
</table>
</table>



Revision as of 22:13, 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
OrganizationalUnit string
CommonName string
Challenge A string that is the expected authentication challenge data.

Usage notes

Examples

See also