Certificate (Socket function): Difference between revisions
Jump to navigation
Jump to search
m (→See also: add mention of String cipher methods) |
m (→See also: add template for SL crypto methods) |
||
(One intermediate revision by the same user not shown) | |||
Line 33: | Line 33: | ||
==See also== | ==See also== | ||
<p> | <p> | ||
<var>String</var> | <var>System</var> methods: </p> | ||
<ul> | |||
<li><var>[[ClientCertificate (System function)|ClientCertificate]]</var>, <li><var>[[GeneratedPrivateKey (System function)|GeneratedPrivateKey]]</var> </li> | |||
</ul> | |||
<p> | |||
<var>Stringlist</var> methods: </p> | |||
{{Template:Stringlist crypto methods}} | |||
<p> | |||
<var>String</var> methods:</p> | |||
<ul> | <ul> | ||
<li><var>[[CertificateRequest (String function)|CertificateRequest]]</var> </li> | <li><var>[[CertificateRequest (String function)|CertificateRequest]]</var> </li> | ||
Line 49: | Line 57: | ||
<li>Multiple cryptographic cipher methods </li> | <li>Multiple cryptographic cipher methods </li> | ||
</ul> | </ul> | ||
<p><var>HttpRequest</var> methods: </p> | <p><var>HttpRequest</var> methods: </p> | ||
<ul> | <ul> | ||
<li><var>[[Get (HttpRequest function)|Get]]</var> | <li><var>[[Get (HttpRequest function)|Get]]</var>, <var>[[Post (HttpRequest function)|Post]]</var>, and <var>[[Send (HttpRequest function)|Send]]</var> </li> | ||
</ul> | </ul> | ||
{{Template:Socket:Certificate footer}} | {{Template:Socket:Certificate footer}} |
Latest revision as of 23:44, 15 March 2016
Retrieve the SSL certificate (Socket class)
[Introduced in Sirius Mods 8.0]
This method enables a server socket to get a Longstring version of a client socket's SSL certificate.
Syntax
%string = socket:Certificate[( [RequestCertificate= boolean])]
Syntax terms
%string | A Longstring to contain a copy of the binary, ASN.1 encoded, content of the SSL certificate presented by the client socket (if socket is a server socket). If no certificate is provided (for whatever reason), %string is a null string. If socket is a client socket, %string is always a null string. |
---|---|
socket | A variable or an expression that is a reference to a server or client Socket object. |
RequestCertificate | This name required argument is a Boolean enumeration. If the value is True :
If the argument value is |
Usage notes
- Specifying
RequestCertificate=True
only has an effect for a Janus SSL port whose definition does not include SSLCLCERT or SSLCLCERTR. These parameters request a client certificate at connection-establishment time, and a client certificate may only be requested once for an SSL session (whether or not the request successfully gets a certificate in return).
See also
System methods:
Stringlist methods:
- AppendCertificateInfo
- AppendCertificateRequest
- AppendCertificateRequestInfo
- AppendClientCertificateRequest
- AppendEncryptedSecurityData
- AppendGeneratedPrivateKey
- AppendPemData
- AppendPrivateKeyInfo
- AppendSignedCertificate
- AppendSignedClientCertificate
- CheckCertificate
- CheckCertificateRequest
- PemToString
String methods:
- CertificateRequest
- SignedCertificate
- DerToXmlDoc
- RSAPrivateKeyToXmlDoc
- X509CertificateToXmlDoc
- X509CrlToXmlDoc
- Multiple cryptographic cipher methods
HttpRequest methods: