CertLevels (Socket function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 1: Line 1:
<span class="pageSubtitle"><section begin=dpl_desc/><section end=dpl_desc/></span>
{{Template:Socket:CertLevels subtitle}}
[[Category:Socket methods|CertLevels function]]
<p>
<var>CertLevels</var> is a member of the <var>[[Socket class|Socket]]</var> class.
</p>


This method retrieves the number of
This method retrieves the number of
Line 10: Line 6:
its equivalent $function, <var>[[$Sock_Cert_Levels]]</var>.
its equivalent $function, <var>[[$Sock_Cert_Levels]]</var>.
==Syntax==
==Syntax==
<p class="syntax">%cl = %socko:CertLevels
{{Template:Socket:CertLevels syntax}}
</p>
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 42: Line 37:
<p class="code">%count = %sok:Certlevels
<p class="code">%count = %sok:Certlevels
</p>
</p>
{{Template:Socket:CertLevels footer}}

Revision as of 23:00, 14 November 2011

Number of levels of the SSL certificate (Socket class)


This method retrieves the number of levels of the SSL certificate provided on a socket by the remote partner. The CertLevels function has an effect similar to its equivalent $function, $Sock_Cert_Levels.

Syntax

%number = socket:CertLevels

Syntax terms

%cl Return string, which contains the value of the number of levels of the certificate provided by the remote partner on a socket.

If no such certificate was provided, the null string is returned. Otherwise, level 0 corresponds to the client or the "subject" of the certificate; level 1 to the "signer" of the certificate; level 2 to the "signer" of the level 1 signer's certificate; and so on.

Since all certificates accepted by Janus Network Security must be signed, %cl will always be greater than or equal to 2 if non-zero. Level 3 would indicate a certificate that includes an intermediate certificate.

For information on the data that can be retrieved for each certificate level see CertInfo. To learn more about client certificates, see the Janus Network Security Reference Manual.

%socko A variable or an expression that is a reference to a socket object.

Usage notes

  • CertLevels returns the value -1 if the socket is not open and ONRESET CONTINUE is in effect for the socket.
  • A CertLevels call may cause an SSL renegotiation in order to request a digital certificate from the client.

Example

The following statement returns the number of levels of the certificate received from the remote partner using the %sok socket:

%count = %sok:Certlevels