Client Class
Properties Methods Events Config Settings Errors
The Client class is designed for use on mobile devices and facilitates EMV® 3-D Secure authentication.
Class Name
IPWorks3DS_Client
Procedural Interface
ipworks3ds_client_open(); ipworks3ds_client_close($res); ipworks3ds_client_register_callback($res, $id, $function); ipworks3ds_client_get_last_error($res); ipworks3ds_client_get_last_error_code($res); ipworks3ds_client_set($res, $id, $index, $value); ipworks3ds_client_get($res, $id, $index); ipworks3ds_client_do_adddeviceparam($res, $field, $value, $valuetype, $category); ipworks3ds_client_do_addextension($res, $id, $name, $critical, $data); ipworks3ds_client_do_addrequestfield($res, $name, $value, $valuetype); ipworks3ds_client_do_checkauthresponse($res, $authresponse); ipworks3ds_client_do_config($res, $configurationstring); ipworks3ds_client_do_getauthrequest($res); ipworks3ds_client_do_interrupt($res); ipworks3ds_client_do_reset($res); ipworks3ds_client_do_resettransactioninfo($res); ipworks3ds_client_do_sendchallengerequest($res);
Remarks
The Client class is a counterpart to the 3DS Server class. It is designed for use on mobile devices and supports operations that facilitate EMV® 3-D Secure authentication in both frictionless and challenge flows.
Preparing the Authentication Request
To begin, device specific information must be collected and prepared for transmission to the directory server. This can be done by calling the AddDeviceParam method. Consult the EMV® 3-D Secure Specifications for more details about applicable device parameters for each particular operating system.
The GetAuthRequest method is used to obtain the request message to be send to the directory server. GetAuthRequest encrypts the device info and prepares all the data necessary to be sent by the 3DS Server class in the SendAuthRequest method.
After calling this method, the returned data must be transmitted via a separate secure channel to the server where 3DS Server is being used.
The following properties are required before calling the method:
Property | Description |
DeviceParams | Contains device information parameters. Add parameters via AddDeviceParam. |
DirectoryServerCert | Used to encrypt the device parameters. |
DirectoryServerId | Identifies the DirectoryServerCert within the directory server. |
SDKAppId | A UUID for the specific installation. |
SDKReferenceNumber | An Id assigned by EMVCo to identify the vendor and software version. |
Calling this method returns required information used by 3DS Server to send the authentication request. Transmit the value returned by this method to the system where 3DS Server is used. The method used to transmit this value is outside the scope of the class.
See SendAuthRequest for details on sending the authentication request after transmitting the data to the 3DS Server.
Calling this method also populates SDKTransactionId which uniquely identifies this transaction and must be used in subsequent calls relating to this transaction, such as SendChallengeRequest.
Interaction With the 3DS Server Class
As mentioned above, the request to the Directory Server must be made by the 3DS Server class which resides on a server under control of the merchant. A web server is required even for app-based authentication both to send the authentication request and to be notified of authentication results later in the flow.
It is expected that a secure channel can be established between the app using the Client class and the server where the 3DS Server class resides in order to transfer information freely.
Sending the Authentication Request
The act of sending the authentication request takes place with the 3DS Server class.
SendAuthRequest begins the 3-D Secure transaction flow by sending an authentication request to the DirectoryServerURL.
After calling this method, check TransactionStatus to determine if the cardholder is authenticated (frictionless flow) or further cardholder interaction is required to complete the authentication (challenge flow).
Prior to calling SendAuthRequest, data must to be collected to facilitate fraud checks by the ACS. The following properties are applicable for both app-based and browser-based flows:
- AcquirerBIN (required)
- AcquirerMerchantId (required)
- CardholderName (required)
- CardNumber (required)
- DirectoryServerURL (required)
- MerchantCategoryCode (required)
- MerchantCountryCode (required)
- MerchantName (required)
- MessageVersion (required)
- PurchaseAmount (required)
- PurchaseDate (required)
- RequestorId (required)
- RequestorName (required)
- RequestorURL (required)
- ResultsURL (required)
- AccountType
- AuthenticationIndicator
- BillingAddress*
- CardholderEmail
- CardholderHomePhone
- CardholderMobilePhone
- CardholderWorkPhone
- DecoupledMaxTimeout
- DecoupledRequestIndicator
- DeviceChannel
- MessageCategory
- PurchaseCurrency
- PurchaseExponent
- ServerOperatorId
- ServerTransactionId
- ShippingAddress*
- ThreeRIIndicator
App-Based Flow
In the app-based flow, device specific information is prepared by the 3DS SDK on the customer's device. This is transmitted to the 3DS Server class via a secure channel, the specifics of which are outside the scope of the classs. Set ClientAuthRequest to this data prepared by the 3DS SDK.
Browser-Based Flow
Before calling this method, first check the cached card-range data to determine if a CardRangeMethodURL has been set by the ACS. Card range data may be retrieved by calling RequestCardRanges.
If no CardRangeMethodURL is present for the given card, set MethodCompletionIndicator to U.
If a CardRangeMethodURL has been specified by the ACS for the card number, the URL must be loaded in the cardholder's browser to allow the ACS to collect additional browser information for risk-based decision making. See the GetMethodData for further details.
Once the method URL invocation is complete, the authentication request may be sent. If the method URL invocation failed, set MethodCompletionIndicator to N before calling SendAuthRequest.
The following additional properties are applicable in browser-based flow:
- NotificationURL (required)
- BrowserAcceptHeader (required)
- BrowserLanguage (required)
- BrowserScreenHeight (required in 2.1.0, required in 2.2.0 and 2.3.1 if BrowserJavaScriptEnabled is true)
- BrowserScreenWidth (required in 2.1.0, required in 2.2.0 and 2.3.1 if BrowserJavaScriptEnabled is true)
- BrowserTimeZone (required in 2.1.0, required in 2.2.0 and 2.3.1 if BrowserJavaScriptEnabled is true)
- BrowserUserAgent (required)
- BrowserIPAddress (conditional)
- BrowserJavaEnabledVal (required in 2.1.0, required in 2.2.0 and 2.3.1 if BrowserJavaScriptEnabled is true)
- BrowserJavaScriptEnabledVal (not valid in 2.1.0, required in 2.2.0 and 2.3.1)
- BrowserScreenColorDepth (required in 2.1.0, required in 2.2.0 and 2.3.1 if BrowserJavaScriptEnabled is true)
- AcceptLanguage (2.3.1 only)
- AcquirerCountryCode (2.3.1 only)
Response Handling
After calling this method the TransactionStatus property holds the result. Possible values are:
Transaction Status | Description |
Y | Authenticated successfully |
C | Cardholder challenge required |
N | Not authenticated |
A | Not authenticated, but a proof of authentication attempt was generated in AuthenticationValue |
U | Not authenticated due to technical or other issue |
R | Not authenticated because the issuer is rejecting authentication |
D | Challenge required; decoupled authentication confirmed |
I | Informational only; 3DS Requestor challenge preference acknowledged |
S | Challenge using SPC |
If the transaction is authenticated (Y or A), no further steps are required. The flow is considered frictionless and the 3-D Secure processing is complete. If processing a payment, the AuthenticationValue and AuthenticationECI values can be included as proof of 3-D Secure authentication.
If the transaction requires a cardholder challenge (C, D or S), further steps are required.
If the transaction is not authenticated, TransactionStatusReason may contain details about the reason.
The following properties are applicable after calling this method:
- AuthenticationECI
- AuthenticationValue
- TransactionStatus
- TransactionStatusReason
- CardholderInformation
- ACSURL (if challenge required)
- ACSChallengeMandatedIndicator (if challenge required)
- AuthenticationType (if challenge required)
- DecoupledConfirmationIndicator
Response Handling - App-Based Flow
After calling this method, ClientAuthResponse is populated with data to be transmitted back to the 3DS SDK. If a challenge is required, the ClientAuthResponse data is used by the 3DS SDK to start when initiating the challenge process.
The 3DS Server is responsible for indicating to the 3DS SDK the results of the SendAuthRequest process, and whether or not a challenge is required. Exactly how this is done is outside the scope of the classs themselves. The response to the 3DS SDK over the secure channel should include information on what to do next.
Note: The TransactionStatus is also populated in the 3DS Server class and may be inspected prior to transmitting ClientAuthResponse back to the 3DS SDK.
Response Handling - Browser-Based Flow
If TransactionStatus is C, then additional steps are required to complete the authentication. The GetChallengeRequest method should be called next to obtain data to be sent to the ACSURL in an authentication window in the customer's browser. Once authentication is complete, the ACS will post the results to the ResultsURL value that was specified when calling SendAuthRequest.
See the GetChallengeRequest method for more details.
If TransactionStatus is D, then decoupled authentication has been accepted by the ACS. DecoupledConfirmationIndicator will have a value of Y as well. Authentication will happen outside of the 3-D Secure flow and, when complete, the ACS will post the results to the ResultsURL that was specified when calling SendAuthRequest.
The DecoupledTimeRemaining value, which is calculated based on the DecoupledMaxTimeout value sent in the initial authentication request, can be checked to see the amount of time remaining before decoupled authentication must be completed. If the ACS does not post the results before this value runs out, it can be assumed that decoupled authentication was not successful.
SPC-Based Authentication
SPC (Secure Payment Confirmation) provides a method to perform a challenge using preestablished FIDO credentials when using a Browser. The SPC authentication can be initiated by the 3DS Requestor via an extra AReq/ARes message pair or by the ACS via a standard Browser Challenge Flow.
For an SPC authentication to execute correctly, the following prerequisites apply:
- The ACS has an enrolled FIDO authenticator on the device for this Cardholder.
- The 3DS Requestor and/or the ACS have detected that the Cardholder Browser supports the related SPC APIs (allow="payment *; publickey-credentialsget *"). For the ACS, this information can be obtained via the Browser User Agent data element or via data obtained via the 3DS Method.
SPC-based authentication can be enabled with the following additions:
Prior to sending the initial authentication request packet (AReq) using the SendAuthRequest method, the ThreeDSRequestorSpcSupport configuration setting should be set to True to indicate that SPC is supported by the 3DS Requestor.
If SPC is accepted by the ACS, the resulting TransactionStatus should be S. The response will also contain a list of enrolled FIDO (WebAuthn) credentials associated with the cardholder, and SPC transaction data. This data is available in the following configuration settings:
- WebAuthnCredentialListCount
- WebAuthnCredentialListWebAuthnCredential
- WebAuthnCredentialListRelyingPartyId
- SPCTransactionAdditionalData
- SPCTransactionChallenge
- SPCTransactionChallengeInfoText
- SPCTransactionCurrency
- SPCTransactionDisplayName
- SPCTransactionIcon
- SPCTransactionIssuerImage
- SPCTransactionIssuerImageDark
- SPCTransactionIssuerImageMonochrome
- SPCTransactionPayeeName
- SPCTransactionPayeeOrigin
- SPCTransactionPSImage
- SPCTransactionPSImageDark
- SPCTransactionPSImageMonochrome
- SPCTransactionTimeout
- SPCTransactionValue
This information is relayed to the 3DS Requestor implementation, and the 3DS Requestor invokes the SPC authentication (SPC API) against the WebAuthn Credential list. The cardholder authenticates using the FIDO authenticator on their device, and the 3DS Requestor retrieves the Assertion Data from the SPC API call.
The 3DS Server is then configured to includes this FIDO Assertion Data is then included in a new authentication request by setting the ReqAuthData[Index] and a ReqAuthMethod[Index] of 09. If the AuthenticationInformation value was saved earlier, it can be set via the same configuration setting. If the 3DS Requestor encounters an error during SPC API invokation, this can be indicated using the SPCIncompletionIndicator.
The SendAuthRequest method should then be called again to transmit this data to the ACS (by way of the DS) in a second AReq.
When SendAuthRequest returns, the 3DS Server proceed the same as the regular browser-based flow when the ARes is returned.
When SPC authentication is to be performed, the authenticaton must be completed within 9 minutes. The component will automatically start an internal timer that can be checked using the CheckSPCTimeout configuration setting. This will return the number of seconds left for SPC authentication to complete. If the time has expired before receiving the Assertion Data from the 3DS Requestor, checking this configuration setting will cause the component to automatically send the second AReq message with an SPCIncompletionIndicator value of 03, indicating that SPC authentication timed out.
Note that SPC-based authentication is only available when a MessageVersion of 2.3.1 is used.
Processing the Authentication Response
After the response to the authentication request is received from the 3DS Server class, call CheckAuthResponse to verify and parse the response. See the 3DS Server's SendAuthRequest method for details about obtaining the response.
Before calling this method, ACSRootCerts must be populated with the root certificates used by the ACS to sign the response. This method will validate the signature of the signed content if present.
After calling this method, inspect TransactionStatus to determine if the transaction requires a challenge. If TransactionStatus is C, a challenge is required and SendChallengeRequest should be called to proceed with the challenge flow. If TransactionStatus is D, decoupled authentication will take place outside of the 3-D Secure flow and the results will be posted to the 3DS Server.
If TransactionStatus is Y or A, the transaction is complete.
Challenge Interaction
If TransactionStatus is C, a challenge is required. The challenge takes place between the cardholder and the ACS. During this interaction the class will communicate directly with the ACS from the app where it is used to exchange information.
SendChallengeRequest begins the challenge flow. SendChallengeRequest sends the Challenge Request to the ACS when a challenge is required.
When the TransactionStatus is C after calling CheckAuthResponse, a challenge to the cardholder is required. This method sends the challenge request and parses the response. The ACS may provide multiple challenges to the cardholder during this process. As a result this method may need to be called multiple times throughout the authentication process.
After this method is called, check ChallengeComplete to determine if the challenge process is complete. If it is complete (True), check TransactionStatus to determine the outcome. If ChallengeComplete is False, additional challenge interaction is required.
First Request
The first time this method is called, information about the required challenge is obtained from the ACS. The ACS connection information is automatically set when CheckAuthResponse is called; there is no need to specify any ACS connection information.
All required properties for the first call to this method are automatically set after CheckAuthResponse is called. If the transaction has been canceled, set ChallengeCancellationIndicator to inform the ACS.
After calling this method, the ACS will respond with details about the challenge to be presented to the cardholder. The ACSUIType property indicates the way the ACS will interact with the cardholder. The ChallengeComplete property will be False after the first call to this method since the challenge interaction is not yet complete.
The following properties are applicable when ACSUIType is Text (01), Single-Select (02), or Multi-Select (03):
- ChallengeSelectInfo
- ChallengeInfoHeader
- ChallengeInfoLabel
- ChallengeInfoText
- EnableChallengeInfoTextIndicator
- ExpandableInformationLabel
- ExpandableInformationText
- IssuerImage1
- IssuerImage2
- IssuerImage3
- PaymentSystemImage1
- PaymentSystemImage2
- PaymentSystemImage3
- ResendInformationLabel
- SubmitAuthenticationLabel
- WhyInformationLabel
- WhyInformationText
Use the values in the above properties to populate values in the native UI in the app. The UI must follow the guidelines defined in the EMV® 3-D Secure specification.
The following properties are applicable when ACSUIType is Out-of-Band (04):
- ChallengeAdditionalInformation
- ChallengeInfoHeader
- ChallengeInfoLabel
- ChallengeInfoText
- EnableChallengeInfoTextIndicator
- ExpandableInformationLabel
- ExpandableInformationText
- IssuerImage1
- IssuerImage2
- IssuerImage3
- OOBContinueLabel
- PaymentSystemImage1
- PaymentSystemImage2
- PaymentSystemImage3
- ResendInformationLabel
- WhyInformationLabel
- WhyInformationText
Use the values in the above properties to populate values in the native UI in the app. The UI must follow the guidelines defined in the EMV® 3-D Secure specification.
The following properties are applicable when ACSUIType is HTML (05):
In the case of an HTML interaction, the app should create a webview and populate this with the HTML in ACSHTML.
As per the EMV® 3-D Secure specification, the HTML UI is presented to the cardholder via a web view which remains in control of the app. The app must intercept any remote URL requests made from within the web view, and instead handle them within the app. Preventing the cardholder from making requests in the web view to another server is critical to the security of the environment. According to the EMVCo specification, intercepting these requests has two effects:
- Prevents malicious HTML from redirecting a user to a phishing site.
- Conceptually puts the web view form under the control of the ACS, rather than the app.
- Navigation attempts from within the web view must be captured by the app and handled internally. This includes all requests including images, javascript files, css, etc.
- The web view element is not utilized as a browser, but as a UI element whose content is provided by the ACS.
Second Request
The second time this method is called, the purpose is to provide a response to the ACS. At this point the customer should have responded to the challenge provided by the ACS in the response to the first call. If the transaction has been canceled, set ChallengeCancellationIndicator to inform the ACS. The following properties are applicable when calling this method the second time:
When ACSUIType is Text (01) or HTML (05), set ChallengeDataEntry to the data exactly as it was specified by the cardholder. Do not format or otherwise change the data.
When ACSUIType is Single-Select (02), set ChallengeDataEntry to the name of the selected option. For instance the ACS may provide the user with a selection like:
mobile: **** **** 329 email: s******k**@g***.comThe value to provide in ChallengeDataEntry is the ChallengeSelectInfoName, i.e. mobile.
When ACSUIType is Multi-Select (03), set ChallengeDataEntry to a comma-separated list of names of the selected options. For instance if ChallengeSelectInfo contains elements with names like chicago_illinois, st_louis_missouri, and portland_oregon, and the user chose two options, the value specified in ChallengeDataEntry would be chicago_illinois,portland_oregon.
When ACSUIType is OOB (04), set OOBContinuationIndicator to True to indicate the cardholder has pressed the button signaling their completing of the OOB process.
Completing the Challenge
After calling SendChallengeRequest a second time with the cardholder's responses, the ACS may require additional challenges. Check the ChallengeComplete property to determine if the challenge is complete. If False, more challenges are required by the ACS and the same process of displaying the challenge info, collecting the response, and submitting it to the ACS should be performed again.
If ChallengeComplete is True, the challenge interaction is complete and TransactionStatus can be inspected to determine whether the transaction was successful.
Note: As part of the challenge completion the ACS also notifies the 3DS Server of the results. This is done by posting the results to the URL defined by the ResultsURL property of the 3DS Server class.
Logging Notes
Logging in the component is handled through the Log event. This will fire anytime a message is built or a response is parsed, including error messages.
When the Log event is fired, the message in question is made available via the Message event parameter. Properties such as EphemeralKey and DeviceParams are also available when they are gathered by the Client. The other event arguments are LogType and LogLevel:
The LogType parameter indicates the type of the log entry. Possible values are:
- "Info"
- "RequestHeaders"
- "ResponseHeaders"
- "RequestBody"
- "ResponseBody"
- "ProxyRequest"
- "ProxyResponse"
- "FirewallRequest"
- "FirewallResponse"
- "AReq"
- "ARes"
- "CReq"
- "CRes"
- "RReq"
- "RRes"
- "PReq"
- "PRes"
- "Erro"
- "EphemeralKey"
- "DeviceParams"
It is recommended to output all messages raised in this event to a file for record keeping purposes, or for later debugging issues that may have come up.
The Server and Client components also have DataPacketIn and DataPacketOut events that fire anytime a data packet is received or sent, respectively. The entire data packet is then accessible in the DataPacket event parameter. For encrypted packets, this would contain the full encrypted data. This parameter may be inspected for advanced troubleshooting.
Property List
The following is the full list of the properties of the class with short descriptions. Click on the links for further details.
ACSHTML | HTML provided by the ACS. |
ACSHTMLRefresh | ACS HTML refresh. |
ACSRootCertCount | The number of records in the ACSRootCert arrays. |
ACSRootCertStore | The name of the certificate store for the client certificate. |
ACSRootCertStorePassword | If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store. |
ACSRootCertStoreType | The type of certificate store for this certificate. |
ACSRootCertSubject | The subject of the certificate used for client authentication. |
ACSRootCertEncoded | The certificate (PEM/Base64 encoded). |
ACSUIType | UI type rendered by the 3DS SDK. |
ChallengeAdditionalInformation | Challenge additional information text. |
ChallengeAdditionalLabel | Challenge Additional Label. |
ChallengeCancellationIndicator | Challenge Cancellation Indicator. |
ChallengeComplete | Whether or not the challenge cycle is complete. |
ChallengeDataEntry | Cardholder entered data. |
ChallengeDataEntryTwo | Cardholder entered data. |
ChallengeEntryBoxAutofill | Indicates if the 3DS SDK enables the autofill option for the Challenge Data Entry. |
ChallengeEntryBoxAutofillType | Indicates the type of data expected when the Challenge Data Entry Autofill is active. |
ChallengeEntryBoxKeyboardType | Indicates if the 3DS SDK shall display a numeric or alphanumeric keyboard. |
ChallengeEntryBoxLabel | Label to specify the expected data entry provided by the ACS. |
ChallengeEntryBoxLengthMax | Indicates to the 3DS SDK the maximum length of the challenge data entry. |
ChallengeEntryBoxMasking | Indicates that the 3DS SDK shall mask the data entered by the Cardholder. |
ChallengeEntryBoxMaskingToggle | Indicates that the 3DS SDK shall display a toggle icon, and display the data entered, if selected by the Cardholder. |
ChallengeEntryBoxTwoAutofill | Indicates if the 3DS SDK enables the autofill option for the Challenge Data Entry. |
ChallengeEntryBoxTwoAutofillType | Indicates the type of data expected when the Challenge Data Entry Autofill is active. |
ChallengeEntryBoxTwoKeyboardType | Indicates if the 3DS SDK shall display a numeric or alphanumeric keyboard. |
ChallengeEntryBoxTwoLabel | Label to specify the expected data entry provided by the ACS. |
ChallengeEntryBoxTwoLengthMax | Indicates to the 3DS SDK the maximum length of the challenge data entry. |
ChallengeEntryBoxTwoMasking | Indicates that the 3DS SDK shall mask the data entered by the Cardholder. |
ChallengeEntryBoxTwoMaskingToggle | Indicates that the 3DS SDK shall display a toggle icon, and display the data entered, if selected by the Cardholder. |
ChallengeInfoHeader | Challenge information screen header. |
ChallengeInfoLabel | Challenge information label. |
ChallengeInfoText | Challenge information text. |
ChallengeSelectInfoCount | The number of records in the ChallengeSelectInfo arrays. |
ChallengeSelectInfoName | The name of the selection option. |
ChallengeSelectInfoValue | The value of the selection option. |
DataPacketOut | Contains the data packet sent to the server. |
DeviceBindingDataEntry | Device Binding Data Entry. |
DeviceBindingInformationText | Device binding information text. |
DeviceParamCount | The number of records in the DeviceParam arrays. |
DeviceParamCategory | The category of the parameter. |
DeviceParamFieldName | The name of the parameter. |
DeviceParamValue | The value of the parameter. |
DeviceParamValueType | The type of the value. |
DirectoryServerCertStore | The name of the certificate store for the client certificate. |
DirectoryServerCertStorePassword | If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store. |
DirectoryServerCertStoreType | The type of certificate store for this certificate. |
DirectoryServerCertSubject | The subject of the certificate used for client authentication. |
DirectoryServerCertEncoded | The certificate (PEM/Base64 encoded). |
DirectoryServerId | Value of the Registered Application Provider Identifier (RID) unique to the payment system. |
DirectoryServerKeyId | Directory Server Key Identifier (kid). |
EnableChallengeInfoTextIndicator | Challenge information text indicator. |
ErrorPacket | The error packet. |
ExpandableInformationLabel | Expandable information label. |
ExpandableInformationText | Expandable information text. |
ExtensionCount | The number of records in the Extension arrays. |
ExtensionCritical | Whether the extension is critical. |
ExtensionData | The extension data as JSON. |
ExtensionId | The id of the specified extension. |
ExtensionName | The extension name. |
IssuerImage1 | Issuer image URL 1. |
IssuerImage2 | Issuer image URL 2. |
IssuerImage3 | Issuer image URL 3. |
MessageVersion | Message version. |
OOBAppLabel | OOB App label. |
OOBAppStatus | OOB App status. |
OOBAppURL | OOB App label. |
OOBAppURLIndicator | OOB App URL Indicator. |
OOBContinuationIndicator | OOB continuation indicator. |
OOBContinueLabel | OOB continuation label. |
PaymentSystemImage1 | Payment system image URL 1. |
PaymentSystemImage2 | Payment system image URL 2. |
PaymentSystemImage3 | Payment system image URL 3. |
ProxyAuthScheme | The type of authorization to perform when connecting to the proxy. |
ProxyAutoDetect | Whether to automatically detect and use proxy system settings, if available. |
ProxyPassword | A password if authentication is to be used for the proxy. |
ProxyPort | The Transmission Control Protocol (TCP) port for the proxy Server (default 80). |
ProxyServer | If a proxy Server is given, then the HTTP request is sent to the proxy instead of the server otherwise specified. |
ProxySSL | When to use a Secure Sockets Layer (SSL) for the connection to the proxy. |
ProxyUser | A username if authentication is to be used for the proxy. |
RequestorAppURL | 3DS Requestor App URL. |
ResendInformationLabel | Label for UI button allowing users to request that authentication information be resent. |
SDKAppId | The unique SDK App Id. |
SDKTransactionId | SDK Transaction ID. |
SSLAcceptServerCertEffectiveDate | The date on which this certificate becomes valid. |
SSLAcceptServerCertExpirationDate | The date on which the certificate expires. |
SSLAcceptServerCertExtendedKeyUsage | A comma-delimited list of extended key usage identifiers. |
SSLAcceptServerCertFingerprint | The hex-encoded, 16-byte MD5 fingerprint of the certificate. |
SSLAcceptServerCertFingerprintSHA1 | The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. |
SSLAcceptServerCertFingerprintSHA256 | The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. |
SSLAcceptServerCertIssuer | The issuer of the certificate. |
SSLAcceptServerCertPrivateKey | The private key of the certificate (if available). |
SSLAcceptServerCertPrivateKeyAvailable | Whether a PrivateKey is available for the selected certificate. |
SSLAcceptServerCertPrivateKeyContainer | The name of the PrivateKey container for the certificate (if available). |
SSLAcceptServerCertPublicKey | The public key of the certificate. |
SSLAcceptServerCertPublicKeyAlgorithm | The textual description of the certificate's public key algorithm. |
SSLAcceptServerCertPublicKeyLength | The length of the certificate's public key (in bits). |
SSLAcceptServerCertSerialNumber | The serial number of the certificate encoded as a string. |
SSLAcceptServerCertSignatureAlgorithm | The text description of the certificate's signature algorithm. |
SSLAcceptServerCertStore | The name of the certificate store for the client certificate. |
SSLAcceptServerCertStorePassword | If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store. |
SSLAcceptServerCertStoreType | The type of certificate store for this certificate. |
SSLAcceptServerCertSubjectAltNames | Comma-separated lists of alternative subject names for the certificate. |
SSLAcceptServerCertThumbprintMD5 | The MD5 hash of the certificate. |
SSLAcceptServerCertThumbprintSHA1 | The SHA-1 hash of the certificate. |
SSLAcceptServerCertThumbprintSHA256 | The SHA-256 hash of the certificate. |
SSLAcceptServerCertUsage | The text description of UsageFlags . |
SSLAcceptServerCertUsageFlags | The flags that show intended use for the certificate. |
SSLAcceptServerCertVersion | The certificate's version number. |
SSLAcceptServerCertSubject | The subject of the certificate used for client authentication. |
SSLAcceptServerCertEncoded | The certificate (PEM/Base64 encoded). |
SSLCertEffectiveDate | The date on which this certificate becomes valid. |
SSLCertExpirationDate | The date on which the certificate expires. |
SSLCertExtendedKeyUsage | A comma-delimited list of extended key usage identifiers. |
SSLCertFingerprint | The hex-encoded, 16-byte MD5 fingerprint of the certificate. |
SSLCertFingerprintSHA1 | The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. |
SSLCertFingerprintSHA256 | The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. |
SSLCertIssuer | The issuer of the certificate. |
SSLCertPrivateKey | The private key of the certificate (if available). |
SSLCertPrivateKeyAvailable | Whether a PrivateKey is available for the selected certificate. |
SSLCertPrivateKeyContainer | The name of the PrivateKey container for the certificate (if available). |
SSLCertPublicKey | The public key of the certificate. |
SSLCertPublicKeyAlgorithm | The textual description of the certificate's public key algorithm. |
SSLCertPublicKeyLength | The length of the certificate's public key (in bits). |
SSLCertSerialNumber | The serial number of the certificate encoded as a string. |
SSLCertSignatureAlgorithm | The text description of the certificate's signature algorithm. |
SSLCertStore | The name of the certificate store for the client certificate. |
SSLCertStorePassword | If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store. |
SSLCertStoreType | The type of certificate store for this certificate. |
SSLCertSubjectAltNames | Comma-separated lists of alternative subject names for the certificate. |
SSLCertThumbprintMD5 | The MD5 hash of the certificate. |
SSLCertThumbprintSHA1 | The SHA-1 hash of the certificate. |
SSLCertThumbprintSHA256 | The SHA-256 hash of the certificate. |
SSLCertUsage | The text description of UsageFlags . |
SSLCertUsageFlags | The flags that show intended use for the certificate. |
SSLCertVersion | The certificate's version number. |
SSLCertSubject | The subject of the certificate used for client authentication. |
SSLCertEncoded | The certificate (PEM/Base64 encoded). |
SSLServerCertEffectiveDate | The date on which this certificate becomes valid. |
SSLServerCertExpirationDate | The date on which the certificate expires. |
SSLServerCertExtendedKeyUsage | A comma-delimited list of extended key usage identifiers. |
SSLServerCertFingerprint | The hex-encoded, 16-byte MD5 fingerprint of the certificate. |
SSLServerCertFingerprintSHA1 | The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. |
SSLServerCertFingerprintSHA256 | The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. |
SSLServerCertIssuer | The issuer of the certificate. |
SSLServerCertPrivateKey | The private key of the certificate (if available). |
SSLServerCertPrivateKeyAvailable | Whether a PrivateKey is available for the selected certificate. |
SSLServerCertPrivateKeyContainer | The name of the PrivateKey container for the certificate (if available). |
SSLServerCertPublicKey | The public key of the certificate. |
SSLServerCertPublicKeyAlgorithm | The textual description of the certificate's public key algorithm. |
SSLServerCertPublicKeyLength | The length of the certificate's public key (in bits). |
SSLServerCertSerialNumber | The serial number of the certificate encoded as a string. |
SSLServerCertSignatureAlgorithm | The text description of the certificate's signature algorithm. |
SSLServerCertStore | The name of the certificate store for the client certificate. |
SSLServerCertStorePassword | If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store. |
SSLServerCertStoreType | The type of certificate store for this certificate. |
SSLServerCertSubjectAltNames | Comma-separated lists of alternative subject names for the certificate. |
SSLServerCertThumbprintMD5 | The MD5 hash of the certificate. |
SSLServerCertThumbprintSHA1 | The SHA-1 hash of the certificate. |
SSLServerCertThumbprintSHA256 | The SHA-256 hash of the certificate. |
SSLServerCertUsage | The text description of UsageFlags . |
SSLServerCertUsageFlags | The flags that show intended use for the certificate. |
SSLServerCertVersion | The certificate's version number. |
SSLServerCertSubject | The subject of the certificate used for client authentication. |
SSLServerCertEncoded | The certificate (PEM/Base64 encoded). |
SubmitAuthenticationLabel | Label for UI button users select to submit authentication. |
Timeout | A timeout for the class. |
TogglePositionIndicator | Toggle Position Indicator. |
TransactionStatus | The transaction status from the last parsed message (ARes, RReq, or CRes). |
UseAdditionalChallenge | Whether or not the additional choice button is selected. |
UseInformationContinuation | Whether or not the Information Continue button is selected. |
WhitelistingDataEntry | Whitelisting Data Entry. |
WhitelistingInformationText | Whitelisting information text. |
WhyInformationLabel | Label for why information section. |
WhyInformationText | Text to explain the authentication task to the user. |
Method List
The following is the full list of the methods of the class with short descriptions. Click on the links for further details.
AddDeviceParam | Adds a device parameter to the collection. |
AddExtension | Adds an extension to the collection. |
AddRequestField | Adds a field to the data in the request. |
CheckAuthResponse | Checks the received packet. |
Config | Sets or retrieves a configuration setting. |
GetAuthRequest | Prepares data to be sent by the 3DS Server. |
Interrupt | Interrupts the current action. |
Reset | Clears all properties to their default values. |
ResetTransactionInfo | Resets transaction specific information. |
SendChallengeRequest | Builds and sends the Challenge Request in an app-based challenge flow. |
Event List
The following is the full list of the events fired by the class with short descriptions. Click on the links for further details.
DataPacketIn | Fired when receiving a data packet from the server. |
DataPacketOut | Fired when sending a data packet to the server. |
Error | Information about errors during data delivery. |
Log | Fires once for each log message. |
SSLServerAuthentication | Fired after the server presents its certificate to the client. |
SSLStatus | Fired when secure connection progress messages are available. |
Config Settings
The following is a list of config settings for the class with short descriptions. Click on the links for further details.
AcceptAnyACSCert | Whether to accept any ACS certificate during signature validation. |
ACSRenderingDeviceUserInterfaceMode | User interface mode the ACS will present to cardholder. |
ACSRenderingInterface | Challenge interface type presented to cardholder. |
ACSRenderingUITemplate | Challenge type presented to cardholder. |
ACSSignedContent | String value of the JWS object of the ARes message created by the ACS. |
ACSTransactionId | Unique transaction identifier assigned by the ACS. |
ACSURL | ACS URL to which the challenge request is sent. |
ChallengeResponse | Challenge Response (CRes). |
ChallengeTimeRemaining | Amount of time left to complete challenge. |
DeviceRenderingInterface | SDK Interface Device Rendering Types supported. |
DeviceRenderingUIType | SDK UI Types supported. |
DSTransactionId | Directory server transaction ID. |
ErrorCode | Code from the last error message. |
ErrorDescription | Description from the last error message. |
ErrorDetail | Additional details from the last error message. |
IncomingExtensionCount | The number of extensions received from the directory server. |
IncomingExtensionCritical[Index] | Whether the extension is critical. |
IncomingExtensionData[Index] | The extension data as JSON. |
IncomingExtensionId[Index] | The id of the specified extension. |
IncomingExtensionName[Index] | The extension name. |
IncomingRawExtensions | The full JSON formatted extension data received from the directory server. |
LogLevel | Level of logging enabled. |
MaskSensitive | Whether to mask sensitive data in the Log event. |
MerchantAppURL | 3DS Requestor App URL. |
MessageType | Type of message that is passed. |
OutgoingRawExtensions | The full JSON formatted extension data sent to the directory server. |
ProtocolVersion | Protocol version identifier. |
ResendChallengeInfo | Resend challenge information code. |
SdkAppId | SDK App ID. |
SdkAuthenticationType | SDK Authentication Type. |
SDKEphemeralPrivateKey | Private key class of the ephemeral key pair generated by the Client. |
SDKEphemeralPublicKey | Public key class of the ephemeral key pair generated by the Client. |
SDKMaxTimeout | SDK Maximum Timeout. |
SDKReferenceNumber | Assigned SDK reference number. |
SDKTransactionId | SDK Transaction ID. |
ServerTransactionId | Unique transaction identifier assigned by the 3DS Server. |
TransactionStatusReason | Reason for value of TransactionStatus. |
UseAESGCM | Whether or not to use AESGCM as the encryption algorithm. |
XChildCount | The number of child elements of the current element. |
XChildName[i] | The name of the child element. |
XChildXText[i] | The inner text of the child element. |
XElement | The name of the current element. |
XParent | The parent of the current element. |
XPath | Provides a way to point to a specific element in the returned XML or JSON response. |
XSubTree | A snapshot of the current element in the document. |
XText | The text of the current element. |
LogSSLPackets | Controls whether SSL packets are logged when using the internal security API. |
OpenSSLCADir | The path to a directory containing CA certificates. |
OpenSSLCAFile | Name of the file containing the list of CA's trusted by your application. |
OpenSSLCipherList | A string that controls the ciphers to be used by SSL. |
OpenSSLPrngSeedData | The data to seed the pseudo random number generator (PRNG). |
ReuseSSLSession | Determines if the SSL session is reused. |
SSLCACertFilePaths | The paths to CA certificate files on Unix/Linux. |
SSLCACerts | A newline separated list of CA certificates to be included when performing an SSL handshake. |
SSLCheckCRL | Whether to check the Certificate Revocation List for the server certificate. |
SSLCheckOCSP | Whether to use OCSP to check the status of the server certificate. |
SSLCipherStrength | The minimum cipher strength used for bulk encryption. |
SSLClientCACerts | A newline separated list of CA certificates to use during SSL client certificate validation. |
SSLEnabledCipherSuites | The cipher suite to be used in an SSL negotiation. |
SSLEnabledProtocols | Used to enable/disable the supported security protocols. |
SSLEnableRenegotiation | Whether the renegotiation_info SSL extension is supported. |
SSLIncludeCertChain | Whether the entire certificate chain is included in the SSLServerAuthentication event. |
SSLKeyLogFile | The location of a file where per-session secrets are written for debugging purposes. |
SSLNegotiatedCipher | Returns the negotiated cipher suite. |
SSLNegotiatedCipherStrength | Returns the negotiated cipher suite strength. |
SSLNegotiatedCipherSuite | Returns the negotiated cipher suite. |
SSLNegotiatedKeyExchange | Returns the negotiated key exchange algorithm. |
SSLNegotiatedKeyExchangeStrength | Returns the negotiated key exchange algorithm strength. |
SSLNegotiatedVersion | Returns the negotiated protocol version. |
SSLSecurityFlags | Flags that control certificate verification. |
SSLServerCACerts | A newline separated list of CA certificates to use during SSL server certificate validation. |
TLS12SignatureAlgorithms | Defines the allowed TLS 1.2 signature algorithms when SSLProvider is set to Internal. |
TLS12SupportedGroups | The supported groups for ECC. |
TLS13KeyShareGroups | The groups for which to pregenerate key shares. |
TLS13SignatureAlgorithms | The allowed certificate signature algorithms. |
TLS13SupportedGroups | The supported groups for (EC)DHE key exchange. |
ACSHTML Property (IPWorks3DS_Client Class)
HTML provided by the ACS.
Object Oriented Interface
public function getACSHTML();
Procedural Interface
ipworks3ds_client_get($res, 1 );
Default Value
''
Remarks
This field contains HTML provided by the ACS in the Challenge Response Message (CRes). This will be populated when the ACSUIType is HTML.
As per the EMV® 3-D Secure specification, the HTML UI is presented to the cardholder via a web view which remains in control of the app. The app must intercept any remote URL requests made from within the web view, and instead handle them within the app. Preventing the cardholder from making requests in the web view to another server is critical to the security of the environment. According to the EMVCo specification, intercepting these requests has two effects:
- Prevents malicious HTML from redirecting a user to a phishing site.
- Conceptually puts the web view form under the control of the ACS, rather than the app.
- Navigation attempts from within the web view must be captured by the app and handled internally. This includes all requests including images, javascript files, css, etc.
- The web view element is not utilized as a browser, but as a UI element whose content is provided by the ACS.
This property is read-only.
Data Type
String
ACSHTMLRefresh Property (IPWorks3DS_Client Class)
ACS HTML refresh.
Object Oriented Interface
public function getACSHTMLRefresh();
Procedural Interface
ipworks3ds_client_get($res, 2 );
Default Value
''
Remarks
Optional HTML provided by the ACS in response to SendChallengeRequest when ACSUIType is HTML (05).
If the ACS HTML Refresh is present in the CRes message, the app should display this in the web view when the app is moved to the foreground.
This property is read-only.
Data Type
String
ACSRootCertCount Property (IPWorks3DS_Client Class)
The number of records in the ACSRootCert arrays.
Object Oriented Interface
public function getACSRootCertCount(); public function setACSRootCertCount($value);
Procedural Interface
ipworks3ds_client_get($res, 3 ); ipworks3ds_client_set($res, 3, $value );
Default Value
0
Remarks
This property controls the size of the following arrays:
The array indices start at 0 and end at ACSRootCertCount - 1.This property is not available at design time.
Data Type
Integer
ACSRootCertStore Property (IPWorks3DS_Client Class)
The name of the certificate store for the client certificate.
Object Oriented Interface
public function getACSRootCertStore($acsrootcertindex); public function setACSRootCertStore($acsrootcertindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 19 , $acsrootcertindex); ipworks3ds_client_set($res, 19, $value , $acsrootcertindex);
Default Value
'MY'
Remarks
The name of the certificate store for the client certificate.
The ACSRootCertStoreType property denotes the type of the certificate store specified by ACSRootCertStore. If the store is password-protected, specify the password in ACSRootCertStorePassword.
ACSRootCertStore is used in conjunction with the ACSRootCertSubject property to specify client certificates. If ACSRootCertStore has a value, and ACSRootCertSubject or ACSRootCertEncoded is set, a search for a certificate is initiated. Please see the ACSRootCertSubject property for details.
Designations of certificate stores are platform dependent.
The following designations are the most common User and Machine certificate stores in Windows:
MY | A certificate store holding personal certificates with their associated private keys. |
CA | Certifying authority certificates. |
ROOT | Root certificates. |
When the certificate store type is cstPFXFile, this property must be set to the name of the file. When the type is cstPFXBlob, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).
The $acsrootcertindex parameter specifies the index of the item in the array. The size of the array is controlled by the ACSRootCertCount property.
This property is not available at design time.
Data Type
Binary String
ACSRootCertStorePassword Property (IPWorks3DS_Client Class)
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
Object Oriented Interface
public function getACSRootCertStorePassword($acsrootcertindex); public function setACSRootCertStorePassword($acsrootcertindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 20 , $acsrootcertindex); ipworks3ds_client_set($res, 20, $value , $acsrootcertindex);
Default Value
''
Remarks
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
The $acsrootcertindex parameter specifies the index of the item in the array. The size of the array is controlled by the ACSRootCertCount property.
This property is not available at design time.
Data Type
String
ACSRootCertStoreType Property (IPWorks3DS_Client Class)
The type of certificate store for this certificate.
Object Oriented Interface
public function getACSRootCertStoreType($acsrootcertindex); public function setACSRootCertStoreType($acsrootcertindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 21 , $acsrootcertindex); ipworks3ds_client_set($res, 21, $value , $acsrootcertindex);
Default Value
0
Remarks
The type of certificate store for this certificate.
The class supports both public and private keys in a variety of formats. When the cstAuto value is used, the class will automatically determine the type. This property can take one of the following values:
0 (cstUser - default) | For Windows, this specifies that the certificate store is a certificate store owned by the current user.
Note: This store type is not available in Java. |
1 (cstMachine) | For Windows, this specifies that the certificate store is a machine store.
Note: This store type is not available in Java. |
2 (cstPFXFile) | The certificate store is the name of a PFX (PKCS#12) file containing certificates. |
3 (cstPFXBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS#12) format. |
4 (cstJKSFile) | The certificate store is the name of a Java Key Store (JKS) file containing certificates.
Note: This store type is only available in Java. |
5 (cstJKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in Java Key Store (JKS) format.
Note: This store type is only available in Java. |
6 (cstPEMKeyFile) | The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
7 (cstPEMKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
8 (cstPublicKeyFile) | The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate. |
9 (cstPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a PEM- or DER-encoded public key certificate. |
10 (cstSSHPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains an SSH-style public key. |
11 (cstP7BFile) | The certificate store is the name of a PKCS#7 file containing certificates. |
12 (cstP7BBlob) | The certificate store is a string (binary) representing a certificate store in PKCS#7 format. |
13 (cstSSHPublicKeyFile) | The certificate store is the name of a file that contains an SSH-style public key. |
14 (cstPPKFile) | The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
15 (cstPPKBlob) | The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
16 (cstXMLFile) | The certificate store is the name of a file that contains a certificate in XML format. |
17 (cstXMLBlob) | The certificate store is a string that contains a certificate in XML format. |
18 (cstJWKFile) | The certificate store is the name of a file that contains a JWK (JSON Web Key). |
19 (cstJWKBlob) | The certificate store is a string that contains a JWK (JSON Web Key). |
21 (cstBCFKSFile) | The certificate store is the name of a file that contains a BCFKS (Bouncy Castle FIPS Key Store).
Note: This store type is only available in Java and .NET. |
22 (cstBCFKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in BCFKS (Bouncy Castle FIPS Key Store) format.
Note: This store type is only available in Java and .NET. |
23 (cstPKCS11) | The certificate is present on a physical security key accessible via a PKCS#11 interface.
To use a security key, the necessary data must first be collected using the CertMgr class. The ListStoreCertificates method may be called after setting CertStoreType to cstPKCS11, CertStorePassword to the PIN, and CertStore to the full path of the PKCS#11 DLL. The certificate information returned in the CertList event's CertEncoded parameter may be saved for later use. When using a certificate, pass the previously saved security key information as the ACSRootCertStore and set ACSRootCertStorePassword to the PIN. Code Example. SSH Authentication with Security Key:
|
99 (cstAuto) | The store type is automatically detected from the input data. This setting may be used with both public and private keys and can detect any of the supported formats automatically. |
The $acsrootcertindex parameter specifies the index of the item in the array. The size of the array is controlled by the ACSRootCertCount property.
This property is not available at design time.
Data Type
Integer
ACSRootCertSubject Property (IPWorks3DS_Client Class)
The subject of the certificate used for client authentication.
Object Oriented Interface
public function getACSRootCertSubject($acsrootcertindex); public function setACSRootCertSubject($acsrootcertindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 29 , $acsrootcertindex); ipworks3ds_client_set($res, 29, $value , $acsrootcertindex);
Default Value
''
Remarks
The subject of the certificate used for client authentication.
This property must be set after all other certificate properties are set. When this property is set, a search is performed in the current certificate store to locate a certificate with a matching subject.
If a matching certificate is found, the property is set to the full subject of the matching certificate.
If an exact match is not found, the store is searched for subjects containing the value of the property.
If a match is still not found, the property is set to an empty string, and no certificate is selected.
The special value "*" picks a random certificate in the certificate store.
The certificate subject is a comma-separated list of distinguished name fields and values. For instance, "CN=www.server.com, OU=test, C=US, E=support@nsoftware.com". Common fields and their meanings are as follows:
Field | Meaning |
CN | Common Name. This is commonly a hostname like www.server.com. |
O | Organization |
OU | Organizational Unit |
L | Locality |
S | State |
C | Country |
E | Email Address |
If a field value contains a comma, it must be quoted.
The $acsrootcertindex parameter specifies the index of the item in the array. The size of the array is controlled by the ACSRootCertCount property.
This property is not available at design time.
Data Type
String
ACSRootCertEncoded Property (IPWorks3DS_Client Class)
The certificate (PEM/Base64 encoded).
Object Oriented Interface
public function getACSRootCertEncoded($acsrootcertindex); public function setACSRootCertEncoded($acsrootcertindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 30 , $acsrootcertindex); ipworks3ds_client_set($res, 30, $value , $acsrootcertindex);
Default Value
''
Remarks
The certificate (PEM/Base64 encoded). This property is used to assign a specific certificate. The ACSRootCertStore and ACSRootCertSubject properties also may be used to specify a certificate.
When ACSRootCertEncoded is set, a search is initiated in the current ACSRootCertStore for the private key of the certificate. If the key is found, ACSRootCertSubject is updated to reflect the full subject of the selected certificate; otherwise, ACSRootCertSubject is set to an empty string.
The $acsrootcertindex parameter specifies the index of the item in the array. The size of the array is controlled by the ACSRootCertCount property.
This property is not available at design time.
Data Type
Binary String
ACSUIType Property (IPWorks3DS_Client Class)
UI type rendered by the 3DS SDK.
Object Oriented Interface
public function getACSUIType();
Procedural Interface
ipworks3ds_client_get($res, 31 );
Default Value
0
Remarks
This field is returned in the Challenge Response Message (CRes) from the ACS and contains the User Interface type that the 3DS SDK will render. 1 = Text 2 = Single Select 3 = Multi Select 4 = OOB 5 = HTML 6 = HTML OOB 7 = Information
This property is read-only.
Data Type
Integer
ChallengeAdditionalInformation Property (IPWorks3DS_Client Class)
Challenge additional information text.
Object Oriented Interface
public function getChallengeAdditionalInformation();
Procedural Interface
ipworks3ds_client_get($res, 32 );
Default Value
''
Remarks
Text provided by the ACS/Issuer to the cardholder during OOB authentication to replace challenge information text and challenge information text indicator in the OOB template.
This property is read-only.
Data Type
String
ChallengeAdditionalLabel Property (IPWorks3DS_Client Class)
Challenge Additional Label.
Object Oriented Interface
public function getChallengeAdditionalLabel();
Procedural Interface
ipworks3ds_client_get($res, 33 );
Default Value
''
Remarks
UI label for the additional choice button provided by the ACS.
This property is read-only.
Data Type
String
ChallengeCancellationIndicator Property (IPWorks3DS_Client Class)
Challenge Cancellation Indicator.
Object Oriented Interface
public function getChallengeCancellationIndicator(); public function setChallengeCancellationIndicator($value);
Procedural Interface
ipworks3ds_client_get($res, 34 ); ipworks3ds_client_set($res, 34, $value );
Default Value
''
Remarks
This field is an indicator informing the ACS and the DS that the authentication has been canceled. This is required to be set if the authentication transaction was canceled by the user. This may also be received in the Results Request from the directory server if the ACS identifies that the authentication transaction was canceled for reasons as indicated.
Possible values include:
01 | Cardholder selected "Cancel" |
02 | 3DS Requestor canceled authentication |
03 | Transaction aborted |
04 | Transaction timed out at ACS - other timeouts |
05 | Transaction timed out at ACS - First CReq not received by ACS |
06 | Transaction error |
07 | Unknown |
Data Type
String
ChallengeComplete Property (IPWorks3DS_Client Class)
Whether or not the challenge cycle is complete.
Object Oriented Interface
public function getChallengeComplete();
Procedural Interface
ipworks3ds_client_get($res, 35 );
Default Value
false
Remarks
Present in the Challenge Response Message (CRes) and indicates whether the challenge cycle is complete or will require additional messages. If true, the TransactionStatus will be populated as well.
This property is read-only.
Data Type
Boolean
ChallengeDataEntry Property (IPWorks3DS_Client Class)
Cardholder entered data.
Object Oriented Interface
public function getChallengeDataEntry(); public function setChallengeDataEntry($value);
Procedural Interface
ipworks3ds_client_get($res, 36 ); ipworks3ds_client_set($res, 36, $value );
Default Value
''
Remarks
This field contains the data that the cardholder entered into the UI.
When ACSUIType is Text (01) or HTML (05), set ChallengeDataEntry to the data exactly as it was specified by the cardholder. Do not format or otherwise change the data.
When ACSUIType is Single-Select (02), set ChallengeDataEntry to the name of the selected option. For instance the ACS may provide the user with a selection like:
mobile: **** **** 329 email: s******k**@g***.comThe value to provide in ChallengeDataEntry is the ChallengeSelectInfoName, i.e. mobile.
When ACSUIType is Multi-Select (03), set ChallengeDataEntry to a comma-separated list of names of the selected options. For instance if ChallengeSelectInfo contains elements with names like chicago_illinois, st_louis_missouri, and portland_oregon, and the user chose two options, the value specified in ChallengeDataEntry would be chicago_illinois,portland_oregon.
Data Type
String
ChallengeDataEntryTwo Property (IPWorks3DS_Client Class)
Cardholder entered data.
Object Oriented Interface
public function getChallengeDataEntryTwo(); public function setChallengeDataEntryTwo($value);
Procedural Interface
ipworks3ds_client_get($res, 37 ); ipworks3ds_client_set($res, 37, $value );
Default Value
''
Remarks
This field contains the data that the cardholder entered into the UI.
When ACSUIType is Text (01) or HTML (05), set ChallengeDataEntry to the data exactly as it was specified by the cardholder. Do not format or otherwise change the data.
When ACSUIType is Single-Select (02), set ChallengeDataEntry to the name of the selected option. For instance the ACS may provide the user with a selection like:
mobile: **** **** 329 email: s******k**@g***.comThe value to provide in ChallengeDataEntry is the ChallengeSelectInfoName, i.e. mobile.
When ACSUIType is Multi-Select (03), set ChallengeDataEntry to a comma-separated list of names of the selected options. For instance if ChallengeSelectInfo contains elements with names like chicago_illinois, st_louis_missouri, and portland_oregon, and the user chose two options, the value specified in ChallengeDataEntry would be chicago_illinois,portland_oregon.
Data Type
String
ChallengeEntryBoxAutofill Property (IPWorks3DS_Client Class)
Indicates if the 3DS SDK enables the autofill option for the Challenge Data Entry.
Object Oriented Interface
public function getChallengeEntryBoxAutofill();
Procedural Interface
ipworks3ds_client_get($res, 38 );
Default Value
false
Remarks
Indicates if the 3DS SDK enables the autofill option for the Challenge Data Entry. When enabled, the 3DS SDK/OS automatically copies the received or saved code or password in the Challenge Data Entry.
This property is read-only and not available at design time.
Data Type
Boolean
ChallengeEntryBoxAutofillType Property (IPWorks3DS_Client Class)
Indicates the type of data expected when the Challenge Data Entry Autofill is active.
Object Oriented Interface
public function getChallengeEntryBoxAutofillType();
Procedural Interface
ipworks3ds_client_get($res, 39 );
Default Value
0
Remarks
Indicates the type of data expected when the Challenge Data Entry Autofill is active. 01 = SMS OTP 02 = Password
This property is read-only and not available at design time.
Data Type
Integer
ChallengeEntryBoxKeyboardType Property (IPWorks3DS_Client Class)
Indicates if the 3DS SDK shall display a numeric or alphanumeric keyboard.
Object Oriented Interface
public function getChallengeEntryBoxKeyboardType();
Procedural Interface
ipworks3ds_client_get($res, 40 );
Default Value
0
Remarks
Indicates if the 3DS SDK shall display a numeric or alphanumeric keyboard. 0 - Undefined 1 - Numeric keyboard 2 - Alphanumeric keyboard
This property is read-only and not available at design time.
Data Type
Integer
ChallengeEntryBoxLabel Property (IPWorks3DS_Client Class)
Label to specify the expected data entry provided by the ACS.
Object Oriented Interface
public function getChallengeEntryBoxLabel();
Procedural Interface
ipworks3ds_client_get($res, 41 );
Default Value
''
Remarks
Label to specify the expected data entry provided by the ACS.
This property is read-only and not available at design time.
Data Type
String
ChallengeEntryBoxLengthMax Property (IPWorks3DS_Client Class)
Indicates to the 3DS SDK the maximum length of the challenge data entry.
Object Oriented Interface
public function getChallengeEntryBoxLengthMax();
Procedural Interface
ipworks3ds_client_get($res, 42 );
Default Value
0
Remarks
Indicates to the 3DS SDK the maximum length of the challenge data entry.
This property is read-only and not available at design time.
Data Type
Integer
ChallengeEntryBoxMasking Property (IPWorks3DS_Client Class)
Indicates that the 3DS SDK shall mask the data entered by the Cardholder.
Object Oriented Interface
public function getChallengeEntryBoxMasking();
Procedural Interface
ipworks3ds_client_get($res, 43 );
Default Value
false
Remarks
Indicates that the 3DS SDK shall mask the data entered by the Cardholder.
This property is read-only and not available at design time.
Data Type
Boolean
ChallengeEntryBoxMaskingToggle Property (IPWorks3DS_Client Class)
Indicates that the 3DS SDK shall display a toggle icon, and display the data entered, if selected by the Cardholder.
Object Oriented Interface
public function getChallengeEntryBoxMaskingToggle();
Procedural Interface
ipworks3ds_client_get($res, 44 );
Default Value
false
Remarks
Indicates that the 3DS SDK shall display a toggle icon, and display the data entered, if selected by the Cardholder.
This property is read-only and not available at design time.
Data Type
Boolean
ChallengeEntryBoxTwoAutofill Property (IPWorks3DS_Client Class)
Indicates if the 3DS SDK enables the autofill option for the Challenge Data Entry.
Object Oriented Interface
public function getChallengeEntryBoxTwoAutofill();
Procedural Interface
ipworks3ds_client_get($res, 45 );
Default Value
false
Remarks
Indicates if the 3DS SDK enables the autofill option for the Challenge Data Entry. When enabled, the 3DS SDK/OS automatically copies the received or saved code or password in the Challenge Data Entry.
This property is read-only and not available at design time.
Data Type
Boolean
ChallengeEntryBoxTwoAutofillType Property (IPWorks3DS_Client Class)
Indicates the type of data expected when the Challenge Data Entry Autofill is active.
Object Oriented Interface
public function getChallengeEntryBoxTwoAutofillType();
Procedural Interface
ipworks3ds_client_get($res, 46 );
Default Value
0
Remarks
Indicates the type of data expected when the Challenge Data Entry Autofill is active. 01 = SMS OTP 02 = Password
This property is read-only and not available at design time.
Data Type
Integer
ChallengeEntryBoxTwoKeyboardType Property (IPWorks3DS_Client Class)
Indicates if the 3DS SDK shall display a numeric or alphanumeric keyboard.
Object Oriented Interface
public function getChallengeEntryBoxTwoKeyboardType();
Procedural Interface
ipworks3ds_client_get($res, 47 );
Default Value
0
Remarks
Indicates if the 3DS SDK shall display a numeric or alphanumeric keyboard. 0 - Undefined 1 - Numeric keyboard 2 - Alphanumeric keyboard
This property is read-only and not available at design time.
Data Type
Integer
ChallengeEntryBoxTwoLabel Property (IPWorks3DS_Client Class)
Label to specify the expected data entry provided by the ACS.
Object Oriented Interface
public function getChallengeEntryBoxTwoLabel();
Procedural Interface
ipworks3ds_client_get($res, 48 );
Default Value
''
Remarks
Label to specify the expected data entry provided by the ACS.
This property is read-only and not available at design time.
Data Type
String
ChallengeEntryBoxTwoLengthMax Property (IPWorks3DS_Client Class)
Indicates to the 3DS SDK the maximum length of the challenge data entry.
Object Oriented Interface
public function getChallengeEntryBoxTwoLengthMax();
Procedural Interface
ipworks3ds_client_get($res, 49 );
Default Value
0
Remarks
Indicates to the 3DS SDK the maximum length of the challenge data entry.
This property is read-only and not available at design time.
Data Type
Integer
ChallengeEntryBoxTwoMasking Property (IPWorks3DS_Client Class)
Indicates that the 3DS SDK shall mask the data entered by the Cardholder.
Object Oriented Interface
public function getChallengeEntryBoxTwoMasking();
Procedural Interface
ipworks3ds_client_get($res, 50 );
Default Value
false
Remarks
Indicates that the 3DS SDK shall mask the data entered by the Cardholder.
This property is read-only and not available at design time.
Data Type
Boolean
ChallengeEntryBoxTwoMaskingToggle Property (IPWorks3DS_Client Class)
Indicates that the 3DS SDK shall display a toggle icon, and display the data entered, if selected by the Cardholder.
Object Oriented Interface
public function getChallengeEntryBoxTwoMaskingToggle();
Procedural Interface
ipworks3ds_client_get($res, 51 );
Default Value
false
Remarks
Indicates that the 3DS SDK shall display a toggle icon, and display the data entered, if selected by the Cardholder.
This property is read-only and not available at design time.
Data Type
Boolean
ChallengeInfoHeader Property (IPWorks3DS_Client Class)
Challenge information screen header.
Object Oriented Interface
public function getChallengeInfoHeader();
Procedural Interface
ipworks3ds_client_get($res, 52 );
Default Value
''
Remarks
This field contains the header text for the challenge information screen that is being presented.
This property is read-only.
Data Type
String
ChallengeInfoLabel Property (IPWorks3DS_Client Class)
Challenge information label.
Object Oriented Interface
public function getChallengeInfoLabel();
Procedural Interface
ipworks3ds_client_get($res, 53 );
Default Value
''
Remarks
This field contains the label to modify the challenge data entry field provided by the issuer. If this field is populated, it should be displayed to the cardholder.
This property is read-only.
Data Type
String
ChallengeInfoText Property (IPWorks3DS_Client Class)
Challenge information text.
Object Oriented Interface
public function getChallengeInfoText();
Procedural Interface
ipworks3ds_client_get($res, 54 );
Default Value
''
Remarks
This field contains text provided by the ACS/Issuer to the cardholder during the challenge message exchange. If this field is populated, it should be displayed to the cardholder.
This property is read-only.
Data Type
String
ChallengeSelectInfoCount Property (IPWorks3DS_Client Class)
The number of records in the ChallengeSelectInfo arrays.
Object Oriented Interface
public function getChallengeSelectInfoCount();
Procedural Interface
ipworks3ds_client_get($res, 55 );
Default Value
0
Remarks
This property controls the size of the following arrays:
The array indices start at 0 and end at ChallengeSelectInfoCount - 1.This property is read-only and not available at design time.
Data Type
Integer
ChallengeSelectInfoName Property (IPWorks3DS_Client Class)
The name of the selection option.
Object Oriented Interface
public function getChallengeSelectInfoName($challengeselectinfoindex);
Procedural Interface
ipworks3ds_client_get($res, 56 , $challengeselectinfoindex);
Default Value
''
Remarks
The name of the selection option.
The $challengeselectinfoindex parameter specifies the index of the item in the array. The size of the array is controlled by the ChallengeSelectInfoCount property.
This property is read-only and not available at design time.
Data Type
String
ChallengeSelectInfoValue Property (IPWorks3DS_Client Class)
The value of the selection option.
Object Oriented Interface
public function getChallengeSelectInfoValue($challengeselectinfoindex);
Procedural Interface
ipworks3ds_client_get($res, 57 , $challengeselectinfoindex);
Default Value
''
Remarks
The value of the selection option.
The $challengeselectinfoindex parameter specifies the index of the item in the array. The size of the array is controlled by the ChallengeSelectInfoCount property.
This property is read-only and not available at design time.
Data Type
String
DataPacketOut Property (IPWorks3DS_Client Class)
Contains the data packet sent to the server.
Object Oriented Interface
public function getDataPacketOut();
Procedural Interface
ipworks3ds_client_get($res, 58 );
Default Value
''
Remarks
After calling either the RequestCardRanges, or SendAuthRequest methods, this property will contain the entire data packet that was sent. Also, after calling the GetChallengeRequest or GetResultsResponse method, this property will contain the constructed messages. The contents of this property should be logged for each transaction.
This property is read-only and not available at design time.
Data Type
String
DeviceBindingDataEntry Property (IPWorks3DS_Client Class)
Device Binding Data Entry.
Object Oriented Interface
public function getDeviceBindingDataEntry(); public function setDeviceBindingDataEntry($value);
Procedural Interface
ipworks3ds_client_get($res, 59 ); ipworks3ds_client_set($res, 59, $value );
Default Value
false
Remarks
Indicator provided by the 3DS SDK to the ACS to confirm whether the Cardholder gives consent to bind the device.
Data Type
Boolean
DeviceBindingInformationText Property (IPWorks3DS_Client Class)
Device binding information text.
Object Oriented Interface
public function getDeviceBindingInformationText();
Procedural Interface
ipworks3ds_client_get($res, 60 );
Default Value
''
Remarks
Text provided by the ACS to the Cardholder during the Device Binding process.
This property is read-only.
Data Type
String
DeviceParamCount Property (IPWorks3DS_Client Class)
The number of records in the DeviceParam arrays.
Object Oriented Interface
public function getDeviceParamCount(); public function setDeviceParamCount($value);
Procedural Interface
ipworks3ds_client_get($res, 61 ); ipworks3ds_client_set($res, 61, $value );
Default Value
0
Remarks
This property controls the size of the following arrays:
The array indices start at 0 and end at DeviceParamCount - 1.This property is not available at design time.
Data Type
Integer
DeviceParamCategory Property (IPWorks3DS_Client Class)
The category of the parameter.
Object Oriented Interface
public function getDeviceParamCategory($deviceparamindex); public function setDeviceParamCategory($deviceparamindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 62 , $deviceparamindex); ipworks3ds_client_set($res, 62, $value , $deviceparamindex);
Default Value
0
Remarks
The category of the parameter. Possible values include:
0 | DV - Data Version |
1 | DD - Device Data |
2 | DPNA - Device Parameter Not Available |
3 | SW - Security Warning |
The $deviceparamindex parameter specifies the index of the item in the array. The size of the array is controlled by the DeviceParamCount property.
This property is not available at design time.
Data Type
Integer
DeviceParamFieldName Property (IPWorks3DS_Client Class)
The name of the parameter.
Object Oriented Interface
public function getDeviceParamFieldName($deviceparamindex); public function setDeviceParamFieldName($deviceparamindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 63 , $deviceparamindex); ipworks3ds_client_set($res, 63, $value , $deviceparamindex);
Default Value
''
Remarks
The name of the parameter.
The $deviceparamindex parameter specifies the index of the item in the array. The size of the array is controlled by the DeviceParamCount property.
This property is not available at design time.
Data Type
String
DeviceParamValue Property (IPWorks3DS_Client Class)
The value of the parameter.
Object Oriented Interface
public function getDeviceParamValue($deviceparamindex); public function setDeviceParamValue($deviceparamindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 64 , $deviceparamindex); ipworks3ds_client_set($res, 64, $value , $deviceparamindex);
Default Value
''
Remarks
The value of the parameter.
The $deviceparamindex parameter specifies the index of the item in the array. The size of the array is controlled by the DeviceParamCount property.
This property is not available at design time.
Data Type
String
DeviceParamValueType Property (IPWorks3DS_Client Class)
The type of the value.
Object Oriented Interface
public function getDeviceParamValueType($deviceparamindex); public function setDeviceParamValueType($deviceparamindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 65 , $deviceparamindex); ipworks3ds_client_set($res, 65, $value , $deviceparamindex);
Default Value
2
Remarks
The type of the value. Possible values are:
1 | Array |
2 | String |
The $deviceparamindex parameter specifies the index of the item in the array. The size of the array is controlled by the DeviceParamCount property.
This property is not available at design time.
Data Type
Integer
DirectoryServerCertStore Property (IPWorks3DS_Client Class)
The name of the certificate store for the client certificate.
Object Oriented Interface
public function getDirectoryServerCertStore(); public function setDirectoryServerCertStore($value);
Procedural Interface
ipworks3ds_client_get($res, 81 ); ipworks3ds_client_set($res, 81, $value );
Default Value
'MY'
Remarks
The name of the certificate store for the client certificate.
The DirectoryServerCertStoreType property denotes the type of the certificate store specified by DirectoryServerCertStore. If the store is password-protected, specify the password in DirectoryServerCertStorePassword.
DirectoryServerCertStore is used in conjunction with the DirectoryServerCertSubject property to specify client certificates. If DirectoryServerCertStore has a value, and DirectoryServerCertSubject or DirectoryServerCertEncoded is set, a search for a certificate is initiated. Please see the DirectoryServerCertSubject property for details.
Designations of certificate stores are platform dependent.
The following designations are the most common User and Machine certificate stores in Windows:
MY | A certificate store holding personal certificates with their associated private keys. |
CA | Certifying authority certificates. |
ROOT | Root certificates. |
When the certificate store type is cstPFXFile, this property must be set to the name of the file. When the type is cstPFXBlob, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).
Data Type
Binary String
DirectoryServerCertStorePassword Property (IPWorks3DS_Client Class)
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
Object Oriented Interface
public function getDirectoryServerCertStorePassword(); public function setDirectoryServerCertStorePassword($value);
Procedural Interface
ipworks3ds_client_get($res, 82 ); ipworks3ds_client_set($res, 82, $value );
Default Value
''
Remarks
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
Data Type
String
DirectoryServerCertStoreType Property (IPWorks3DS_Client Class)
The type of certificate store for this certificate.
Object Oriented Interface
public function getDirectoryServerCertStoreType(); public function setDirectoryServerCertStoreType($value);
Procedural Interface
ipworks3ds_client_get($res, 83 ); ipworks3ds_client_set($res, 83, $value );
Default Value
0
Remarks
The type of certificate store for this certificate.
The class supports both public and private keys in a variety of formats. When the cstAuto value is used, the class will automatically determine the type. This property can take one of the following values:
0 (cstUser - default) | For Windows, this specifies that the certificate store is a certificate store owned by the current user.
Note: This store type is not available in Java. |
1 (cstMachine) | For Windows, this specifies that the certificate store is a machine store.
Note: This store type is not available in Java. |
2 (cstPFXFile) | The certificate store is the name of a PFX (PKCS#12) file containing certificates. |
3 (cstPFXBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS#12) format. |
4 (cstJKSFile) | The certificate store is the name of a Java Key Store (JKS) file containing certificates.
Note: This store type is only available in Java. |
5 (cstJKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in Java Key Store (JKS) format.
Note: This store type is only available in Java. |
6 (cstPEMKeyFile) | The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
7 (cstPEMKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
8 (cstPublicKeyFile) | The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate. |
9 (cstPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a PEM- or DER-encoded public key certificate. |
10 (cstSSHPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains an SSH-style public key. |
11 (cstP7BFile) | The certificate store is the name of a PKCS#7 file containing certificates. |
12 (cstP7BBlob) | The certificate store is a string (binary) representing a certificate store in PKCS#7 format. |
13 (cstSSHPublicKeyFile) | The certificate store is the name of a file that contains an SSH-style public key. |
14 (cstPPKFile) | The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
15 (cstPPKBlob) | The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
16 (cstXMLFile) | The certificate store is the name of a file that contains a certificate in XML format. |
17 (cstXMLBlob) | The certificate store is a string that contains a certificate in XML format. |
18 (cstJWKFile) | The certificate store is the name of a file that contains a JWK (JSON Web Key). |
19 (cstJWKBlob) | The certificate store is a string that contains a JWK (JSON Web Key). |
21 (cstBCFKSFile) | The certificate store is the name of a file that contains a BCFKS (Bouncy Castle FIPS Key Store).
Note: This store type is only available in Java and .NET. |
22 (cstBCFKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in BCFKS (Bouncy Castle FIPS Key Store) format.
Note: This store type is only available in Java and .NET. |
23 (cstPKCS11) | The certificate is present on a physical security key accessible via a PKCS#11 interface.
To use a security key, the necessary data must first be collected using the CertMgr class. The ListStoreCertificates method may be called after setting CertStoreType to cstPKCS11, CertStorePassword to the PIN, and CertStore to the full path of the PKCS#11 DLL. The certificate information returned in the CertList event's CertEncoded parameter may be saved for later use. When using a certificate, pass the previously saved security key information as the DirectoryServerCertStore and set DirectoryServerCertStorePassword to the PIN. Code Example. SSH Authentication with Security Key:
|
99 (cstAuto) | The store type is automatically detected from the input data. This setting may be used with both public and private keys and can detect any of the supported formats automatically. |
Data Type
Integer
DirectoryServerCertSubject Property (IPWorks3DS_Client Class)
The subject of the certificate used for client authentication.
Object Oriented Interface
public function getDirectoryServerCertSubject(); public function setDirectoryServerCertSubject($value);
Procedural Interface
ipworks3ds_client_get($res, 91 ); ipworks3ds_client_set($res, 91, $value );
Default Value
''
Remarks
The subject of the certificate used for client authentication.
This property must be set after all other certificate properties are set. When this property is set, a search is performed in the current certificate store to locate a certificate with a matching subject.
If a matching certificate is found, the property is set to the full subject of the matching certificate.
If an exact match is not found, the store is searched for subjects containing the value of the property.
If a match is still not found, the property is set to an empty string, and no certificate is selected.
The special value "*" picks a random certificate in the certificate store.
The certificate subject is a comma-separated list of distinguished name fields and values. For instance, "CN=www.server.com, OU=test, C=US, E=support@nsoftware.com". Common fields and their meanings are as follows:
Field | Meaning |
CN | Common Name. This is commonly a hostname like www.server.com. |
O | Organization |
OU | Organizational Unit |
L | Locality |
S | State |
C | Country |
E | Email Address |
If a field value contains a comma, it must be quoted.
Data Type
String
DirectoryServerCertEncoded Property (IPWorks3DS_Client Class)
The certificate (PEM/Base64 encoded).
Object Oriented Interface
public function getDirectoryServerCertEncoded(); public function setDirectoryServerCertEncoded($value);
Procedural Interface
ipworks3ds_client_get($res, 92 ); ipworks3ds_client_set($res, 92, $value );
Default Value
''
Remarks
The certificate (PEM/Base64 encoded). This property is used to assign a specific certificate. The DirectoryServerCertStore and DirectoryServerCertSubject properties also may be used to specify a certificate.
When DirectoryServerCertEncoded is set, a search is initiated in the current DirectoryServerCertStore for the private key of the certificate. If the key is found, DirectoryServerCertSubject is updated to reflect the full subject of the selected certificate; otherwise, DirectoryServerCertSubject is set to an empty string.
This property is not available at design time.
Data Type
Binary String
DirectoryServerId Property (IPWorks3DS_Client Class)
Value of the Registered Application Provider Identifier (RID) unique to the payment system.
Object Oriented Interface
public function getDirectoryServerId(); public function setDirectoryServerId($value);
Procedural Interface
ipworks3ds_client_get($res, 93 ); ipworks3ds_client_set($res, 93, $value );
Default Value
''
Remarks
Registered Application Provider Identifier (RID) value defined by the ISO 7816-5 standard for uniquely registering such providers. This value is unique to the Payment System involved and must be known by the 3DS Requestor App so that it may be passed to the SDK on when it invokes the createTransaction method within the SDK. Used to identify the DirectoryServerCert for the given DS which is used by the SDK to encrypt the Device Information. Required when DirectoryServerCert is an EC key.
Data Type
String
DirectoryServerKeyId Property (IPWorks3DS_Client Class)
Directory Server Key Identifier (kid).
Object Oriented Interface
public function getDirectoryServerKeyId(); public function setDirectoryServerKeyId($value);
Procedural Interface
ipworks3ds_client_get($res, 94 ); ipworks3ds_client_set($res, 94, $value );
Default Value
''
Remarks
Used to specify the Directory Server Key Identifier. There may be multiple keys for each DS, with each key having a unique identifier.
Data Type
String
EnableChallengeInfoTextIndicator Property (IPWorks3DS_Client Class)
Challenge information text indicator.
Object Oriented Interface
public function getEnableChallengeInfoTextIndicator();
Procedural Interface
ipworks3ds_client_get($res, 95 );
Default Value
false
Remarks
This field indicates when the ACS/Issuer would like a warning icon or similar visual indicator to draw attention to the ChallengeInfoText that is being displayed. If this field is populated, it should affect the information being displayed to the cardholder.
This property is read-only.
Data Type
Boolean
ErrorPacket Property (IPWorks3DS_Client Class)
The error packet.
Object Oriented Interface
public function getErrorPacket();
Procedural Interface
ipworks3ds_client_get($res, 96 );
Default Value
''
Remarks
If an error is encountered while parsing a received packet using the CheckResponse method, this field will be populated with an error packet to be sent back to the server.
If the message being parsed is an error, this field will be populated with the received error packet itself.
This property is read-only.
Data Type
String
ExpandableInformationLabel Property (IPWorks3DS_Client Class)
Expandable information label.
Object Oriented Interface
public function getExpandableInformationLabel();
Procedural Interface
ipworks3ds_client_get($res, 97 );
Default Value
''
Remarks
Label displayed to the cardholder for the content in ExpandableInformationText.
This property is read-only.
Data Type
String
ExpandableInformationText Property (IPWorks3DS_Client Class)
Expandable information text.
Object Oriented Interface
public function getExpandableInformationText();
Procedural Interface
ipworks3ds_client_get($res, 98 );
Default Value
''
Remarks
This field contains text provided by the Issuer from the ACS to be displayed to the cardholder for additional information. The format should be an expandable text field.
This property is read-only.
Data Type
String
ExtensionCount Property (IPWorks3DS_Client Class)
The number of records in the Extension arrays.
Object Oriented Interface
public function getExtensionCount(); public function setExtensionCount($value);
Procedural Interface
ipworks3ds_client_get($res, 99 ); ipworks3ds_client_set($res, 99, $value );
Default Value
0
Remarks
This property controls the size of the following arrays:
The array indices start at 0 and end at ExtensionCount - 1.This property is not available at design time.
Data Type
Integer
ExtensionCritical Property (IPWorks3DS_Client Class)
Whether the extension is critical.
Object Oriented Interface
public function getExtensionCritical($extensionindex); public function setExtensionCritical($extensionindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 100 , $extensionindex); ipworks3ds_client_set($res, 100, $value , $extensionindex);
Default Value
false
Remarks
Whether the extension is critical.
This setting specifies whether the recipient must understand the contents of the extension to interpret the entire message.
The $extensionindex parameter specifies the index of the item in the array. The size of the array is controlled by the ExtensionCount property.
This property is not available at design time.
Data Type
Boolean
ExtensionData Property (IPWorks3DS_Client Class)
The extension data as JSON.
Object Oriented Interface
public function getExtensionData($extensionindex); public function setExtensionData($extensionindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 101 , $extensionindex); ipworks3ds_client_set($res, 101, $value , $extensionindex);
Default Value
''
Remarks
The extension data as JSON.
This setting specifies the JSON formatted extension data.
The $extensionindex parameter specifies the index of the item in the array. The size of the array is controlled by the ExtensionCount property.
This property is not available at design time.
Data Type
String
ExtensionId Property (IPWorks3DS_Client Class)
The id of the specified extension.
Object Oriented Interface
public function getExtensionId($extensionindex); public function setExtensionId($extensionindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 102 , $extensionindex); ipworks3ds_client_set($res, 102, $value , $extensionindex);
Default Value
''
Remarks
The id of the specified extension.
This setting specifies a unique identifier for the extension.
The $extensionindex parameter specifies the index of the item in the array. The size of the array is controlled by the ExtensionCount property.
This property is not available at design time.
Data Type
String
ExtensionName Property (IPWorks3DS_Client Class)
The extension name.
Object Oriented Interface
public function getExtensionName($extensionindex); public function setExtensionName($extensionindex, $value);
Procedural Interface
ipworks3ds_client_get($res, 103 , $extensionindex); ipworks3ds_client_set($res, 103, $value , $extensionindex);
Default Value
''
Remarks
The extension name.
This setting specifies the name of the extension as defined by the extension owner.
The $extensionindex parameter specifies the index of the item in the array. The size of the array is controlled by the ExtensionCount property.
This property is not available at design time.
Data Type
String
IssuerImage1 Property (IPWorks3DS_Client Class)
Issuer image URL 1.
Object Oriented Interface
public function getIssuerImage1();
Procedural Interface
ipworks3ds_client_get($res, 104 );
Default Value
''
Remarks
Sent in the initial CRes message from the ACS to the 3DS SDK to provide the URL(s) of the issuer logo or image to be used in the Native UI. before 2.3.1: Medium Density Image in 2.3.1: Default Image
This property is read-only and not available at design time.
Data Type
String
IssuerImage2 Property (IPWorks3DS_Client Class)
Issuer image URL 2.
Object Oriented Interface
public function getIssuerImage2();
Procedural Interface
ipworks3ds_client_get($res, 105 );
Default Value
''
Remarks
Sent in the initial CRes message from the ACS to the 3DS SDK to provide the URL(s) of the issuer logo or image to be used in the Native UI. before 2.3.1: High Density Image in 2.3.1: Dark Mode Image
This property is read-only and not available at design time.
Data Type
String
IssuerImage3 Property (IPWorks3DS_Client Class)
Issuer image URL 3.
Object Oriented Interface
public function getIssuerImage3();
Procedural Interface
ipworks3ds_client_get($res, 106 );
Default Value
''
Remarks
Sent in the initial CRes message from the ACS to the 3DS SDK to provide the URL(s) of the issuer logo or image to be used in the Native UI. before 2.3.1: Extra High-Density Image in 2.3.1: Monochrome Image
This property is read-only and not available at design time.
Data Type
String
MessageVersion Property (IPWorks3DS_Client Class)
Message version.
Object Oriented Interface
public function getMessageVersion(); public function setMessageVersion($value);
Procedural Interface
ipworks3ds_client_get($res, 107 ); ipworks3ds_client_set($res, 107, $value );
Default Value
'2.1.0'
Remarks
This field indicates the protocol version. This should be the protocol version number of the specification utilized by the system creating this message.
Possible values are:
2.1.0 (Default) | |
2.2.0 | |
2.3.1 |
Data Type
String
OOBAppLabel Property (IPWorks3DS_Client Class)
OOB App label.
Object Oriented Interface
public function getOOBAppLabel();
Procedural Interface
ipworks3ds_client_get($res, 108 );
Default Value
''
Remarks
Label to be displayed for the link to the OOB App URL. For example: "Click here to open Your Bank App."
This property is read-only.
Data Type
String
OOBAppStatus Property (IPWorks3DS_Client Class)
OOB App status.
Object Oriented Interface
public function getOOBAppStatus(); public function setOOBAppStatus($value);
Procedural Interface
ipworks3ds_client_get($res, 109 ); ipworks3ds_client_set($res, 109, $value );
Default Value
0
Remarks
Status code indicating the problem type encountered when using the OOB App URL. 1 = Open OOB App URL failed
Data Type
Integer
OOBAppURL Property (IPWorks3DS_Client Class)
OOB App label.
Object Oriented Interface
public function getOOBAppURL();
Procedural Interface
ipworks3ds_client_get($res, 110 );
Default Value
''
Remarks
Universal App Link to an authentication app used in the OOB authentication. The OOB App URL will open the appropriate location within the OOB Authentication App.
This property is read-only.
Data Type
String
OOBAppURLIndicator Property (IPWorks3DS_Client Class)
OOB App URL Indicator.
Object Oriented Interface
public function getOOBAppURLIndicator(); public function setOOBAppURLIndicator($value);
Procedural Interface
ipworks3ds_client_get($res, 111 ); ipworks3ds_client_set($res, 111, $value );
Default Value
1
Remarks
Indicates if the 3DS SDK supports the OOB App URL. 01 = Supported 02 = Not supported by the device 03 = Not supported by the 3DS Requestor
Data Type
Integer
OOBContinuationIndicator Property (IPWorks3DS_Client Class)
OOB continuation indicator.
Object Oriented Interface
public function getOOBContinuationIndicator(); public function setOOBContinuationIndicator($value);
Procedural Interface
ipworks3ds_client_get($res, 112 ); ipworks3ds_client_set($res, 112, $value );
Default Value
0
Remarks
An indicator notifying the ACS that the cardholder has completed the authentication as requested by selecting the continue button in an out-of-band (OOB) authentication method. This is exclusive to the app flow and required when the ACSUIType is set to OOB when the user has selected the continue option on the device.
Data Type
Integer
OOBContinueLabel Property (IPWorks3DS_Client Class)
OOB continuation label.
Object Oriented Interface
public function getOOBContinueLabel();
Procedural Interface
ipworks3ds_client_get($res, 113 );
Default Value
''
Remarks
Label to be used in the UI for the button that the user selects when they have completed the OOB authentication.
This property is read-only.
Data Type
String
PaymentSystemImage1 Property (IPWorks3DS_Client Class)
Payment system image URL 1.
Object Oriented Interface
public function getPaymentSystemImage1();
Procedural Interface
ipworks3ds_client_get($res, 114 );
Default Value
''
Remarks
Sent in the initial CRes message from the ACS to the 3DS SDK to provide the URL(s) of the directory server or payment system logo or image to be used in the Native UI. before 2.3.1: Medium Density Image in 2.3.1: Default Image
This property is read-only and not available at design time.
Data Type
String
PaymentSystemImage2 Property (IPWorks3DS_Client Class)
Payment system image URL 2.
Object Oriented Interface
public function getPaymentSystemImage2();
Procedural Interface
ipworks3ds_client_get($res, 115 );
Default Value
''
Remarks
Sent in the initial CRes message from the ACS to the 3DS SDK to provide the URL(s) of the directory server or payment system logo or image to be used in the Native UI. before 2.3.1: High Density Image in 2.3.1: Dark Mode Image
This property is read-only and not available at design time.
Data Type
String
PaymentSystemImage3 Property (IPWorks3DS_Client Class)
Payment system image URL 3.
Object Oriented Interface
public function getPaymentSystemImage3();
Procedural Interface
ipworks3ds_client_get($res, 116 );
Default Value
''
Remarks
Sent in the initial CRes message from the ACS to the 3DS SDK to provide the URL(s) of the directory server or payment system logo or image to be used in the Native UI. before 2.3.1: Extra High-Density Image in 2.3.1: Monochrome Image
This property is read-only and not available at design time.
Data Type
String
ProxyAuthScheme Property (IPWorks3DS_Client Class)
The type of authorization to perform when connecting to the proxy.
Object Oriented Interface
public function getProxyAuthScheme(); public function setProxyAuthScheme($value);
Procedural Interface
ipworks3ds_client_get($res, 117 ); ipworks3ds_client_set($res, 117, $value );
Default Value
0
Remarks
The type of authorization to perform when connecting to the proxy. This is used only when the ProxyUser and ProxyPassword properties are set.
ProxyAuthScheme should be set to authNone (3) when no authentication is expected.
By default, ProxyAuthScheme is authBasic (0), and if the ProxyUser and ProxyPassword properties are set, the class will attempt basic authentication.
If ProxyAuthScheme is set to authDigest (1), digest authentication will be attempted instead.
If ProxyAuthScheme is set to authProprietary (2), then the authorization token will not be generated by the class. Look at the configuration file for the class being used to find more information about manually setting this token.
If ProxyAuthScheme is set to authNtlm (4), NTLM authentication will be used.
For security reasons, setting this property will clear the values of ProxyUser and ProxyPassword.
Data Type
Integer
ProxyAutoDetect Property (IPWorks3DS_Client Class)
Whether to automatically detect and use proxy system settings, if available.
Object Oriented Interface
public function getProxyAutoDetect(); public function setProxyAutoDetect($value);
Procedural Interface
ipworks3ds_client_get($res, 118 ); ipworks3ds_client_set($res, 118, $value );
Default Value
false
Remarks
Whether to automatically detect and use proxy system settings, if available. The default value is false.
Data Type
Boolean
ProxyPassword Property (IPWorks3DS_Client Class)
A password if authentication is to be used for the proxy.
Object Oriented Interface
public function getProxyPassword(); public function setProxyPassword($value);
Procedural Interface
ipworks3ds_client_get($res, 119 ); ipworks3ds_client_set($res, 119, $value );
Default Value
''
Remarks
A password if authentication is to be used for the proxy.
If ProxyAuthScheme is set to Basic Authentication, the ProxyUser and ProxyPassword properties are Base64 encoded and the proxy authentication token will be generated in the form Basic [encoded-user-password].
If ProxyAuthScheme is set to Digest Authentication, the ProxyUser and ProxyPassword properties are used to respond to the Digest Authentication challenge from the server.
If ProxyAuthScheme is set to NTLM Authentication, the ProxyUser and ProxyPassword properties are used to authenticate through NTLM negotiation.
Data Type
String
ProxyPort Property (IPWorks3DS_Client Class)
The Transmission Control Protocol (TCP) port for the proxy Server (default 80).
Object Oriented Interface
public function getProxyPort(); public function setProxyPort($value);
Procedural Interface
ipworks3ds_client_get($res, 120 ); ipworks3ds_client_set($res, 120, $value );
Default Value
80
Remarks
The Transmission Control Protocol (TCP) port for the proxy ProxyServer (default 80). See the description of the ProxyServer property for details.
Data Type
Integer
ProxyServer Property (IPWorks3DS_Client Class)
If a proxy Server is given, then the HTTP request is sent to the proxy instead of the server otherwise specified.
Object Oriented Interface
public function getProxyServer(); public function setProxyServer($value);
Procedural Interface
ipworks3ds_client_get($res, 121 ); ipworks3ds_client_set($res, 121, $value );
Default Value
''
Remarks
If a proxy ProxyServer is given, then the HTTP request is sent to the proxy instead of the server otherwise specified.
If the ProxyServer property is set to a domain name, a DNS request is initiated. Upon successful termination of the request, the ProxyServer property is set to the corresponding address. If the search is not successful, an error is returned.
Data Type
String
ProxySSL Property (IPWorks3DS_Client Class)
When to use a Secure Sockets Layer (SSL) for the connection to the proxy.
Object Oriented Interface
public function getProxySSL(); public function setProxySSL($value);
Procedural Interface
ipworks3ds_client_get($res, 122 ); ipworks3ds_client_set($res, 122, $value );
Default Value
0
Remarks
When to use a Secure Sockets Layer (SSL) for the connection to the proxy. The applicable values are as follows:
psAutomatic (0) | Default setting. If the URL is an https URL, the class will use the psTunnel option. If the URL is an http URL, the class will use the psNever option. |
psAlways (1) | The connection is always SSL-enabled. |
psNever (2) | The connection is not SSL-enabled. |
psTunnel (3) | The connection is made through a tunneling (HTTP) proxy. |
Data Type
Integer
ProxyUser Property (IPWorks3DS_Client Class)
A username if authentication is to be used for the proxy.
Object Oriented Interface
public function getProxyUser(); public function setProxyUser($value);
Procedural Interface
ipworks3ds_client_get($res, 123 ); ipworks3ds_client_set($res, 123, $value );
Default Value
''
Remarks
A username if authentication is to be used for the proxy.
If ProxyAuthScheme is set to Basic Authentication, the ProxyUser and ProxyPassword properties are Base64 encoded and the proxy authentication token will be generated in the form Basic [encoded-user-password].
If ProxyAuthScheme is set to Digest Authentication, the ProxyUser and ProxyPassword properties are used to respond to the Digest Authentication challenge from the server.
If ProxyAuthScheme is set to NTLM Authentication, the ProxyUser and ProxyPassword properties are used to authenticate through NTLM negotiation.
Data Type
String
RequestorAppURL Property (IPWorks3DS_Client Class)
3DS Requestor App URL.
Object Oriented Interface
public function getRequestorAppURL(); public function setRequestorAppURL($value);
Procedural Interface
ipworks3ds_client_get($res, 124 ); ipworks3ds_client_set($res, 124, $value );
Default Value
''
Remarks
3DS Requestor App declaring its URL within the CReq message so that the Authentication app can call the 3DS Requestor App after OOB authentication has occurred. Note: When providing the 3DS Requestor App URL, the 3DS Requestor needs to properly register the URL with the Operating System.
Data Type
String
ResendInformationLabel Property (IPWorks3DS_Client Class)
Label for UI button allowing users to request that authentication information be resent.
Object Oriented Interface
public function getResendInformationLabel();
Procedural Interface
ipworks3ds_client_get($res, 125 );
Default Value
''
Remarks
Value of text to be displayed on the UI label on the button users click for authentication information to be resent. Sent in CRes if the ACS allows the Cardholder to request such information to be resent. App-based only.
This property is read-only.
Data Type
String
SDKAppId Property (IPWorks3DS_Client Class)
The unique SDK App Id.
Object Oriented Interface
public function getSDKAppId(); public function setSDKAppId($value);
Procedural Interface
ipworks3ds_client_get($res, 126 ); ipworks3ds_client_set($res, 126, $value );
Default Value
''
Remarks
This property must be set to a universally unique Id created for a specific installation of the app on a consumer device. The app is responsible for generating and storing the SDKAppId for each installation or update. This property must be set before calling GetAuthRequest.
The value assigned here must be 36 characters and be in the format defined in IETF RFC 4122. For example: 8a880dc0-d2d2-4067-bcb1-b08d1690b26e.
Data Type
String
SDKTransactionId Property (IPWorks3DS_Client Class)
SDK Transaction ID.
Object Oriented Interface
public function getSDKTransactionId(); public function setSDKTransactionId($value);
Procedural Interface
ipworks3ds_client_get($res, 127 ); ipworks3ds_client_set($res, 127, $value );
Default Value
''
Remarks
This field contains the universally unique transaction identifier assigned by the 3DS SDK to identify a single transaction. This is generated by the class when calling the GetAuthRequest method. Shall be provided to the 3DS Server for the purpose of uniquely identifying this transaction within all messages of the authentication process, beginning with the AReq sent by the Server.
Data Type
String
SSLAcceptServerCertEffectiveDate Property (IPWorks3DS_Client Class)
The date on which this certificate becomes valid.
Object Oriented Interface
public function getSSLAcceptServerCertEffectiveDate();
Procedural Interface
ipworks3ds_client_get($res, 128 );
Default Value
''
Remarks
The date on which this certificate becomes valid. Before this date, it is not valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:
23-Jan-2000 15:00:00.
This property is read-only.
Data Type
String
SSLAcceptServerCertExpirationDate Property (IPWorks3DS_Client Class)
The date on which the certificate expires.
Object Oriented Interface
public function getSSLAcceptServerCertExpirationDate();
Procedural Interface
ipworks3ds_client_get($res, 129 );
Default Value
''
Remarks
The date on which the certificate expires. After this date, the certificate will no longer be valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:
23-Jan-2001 15:00:00.
This property is read-only.
Data Type
String
SSLAcceptServerCertExtendedKeyUsage Property (IPWorks3DS_Client Class)
A comma-delimited list of extended key usage identifiers.
Object Oriented Interface
public function getSSLAcceptServerCertExtendedKeyUsage();
Procedural Interface
ipworks3ds_client_get($res, 130 );
Default Value
''
Remarks
A comma-delimited list of extended key usage identifiers. These are the same as ASN.1 object identifiers (OIDs).
This property is read-only.
Data Type
String
SSLAcceptServerCertFingerprint Property (IPWorks3DS_Client Class)
The hex-encoded, 16-byte MD5 fingerprint of the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertFingerprint();
Procedural Interface
ipworks3ds_client_get($res, 131 );
Default Value
''
Remarks
The hex-encoded, 16-byte MD5 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: bc:2a:72:af:fe:58:17:43:7a:5f:ba:5a:7c:90:f7:02
This property is read-only.
Data Type
String
SSLAcceptServerCertFingerprintSHA1 Property (IPWorks3DS_Client Class)
The hex-encoded, 20-byte SHA-1 fingerprint of the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertFingerprintSHA1();
Procedural Interface
ipworks3ds_client_get($res, 132 );
Default Value
''
Remarks
The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: 30:7b:fa:38:65:83:ff:da:b4:4e:07:3f:17:b8:a4:ed:80:be:ff:84
This property is read-only.
Data Type
String
SSLAcceptServerCertFingerprintSHA256 Property (IPWorks3DS_Client Class)
The hex-encoded, 32-byte SHA-256 fingerprint of the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertFingerprintSHA256();
Procedural Interface
ipworks3ds_client_get($res, 133 );
Default Value
''
Remarks
The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: 6a:80:5c:33:a9:43:ea:b0:96:12:8a:64:96:30:ef:4a:8a:96:86:ce:f4:c7:be:10:24:8e:2b:60:9e:f3:59:53
This property is read-only.
Data Type
String
SSLAcceptServerCertIssuer Property (IPWorks3DS_Client Class)
The issuer of the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertIssuer();
Procedural Interface
ipworks3ds_client_get($res, 134 );
Default Value
''
Remarks
The issuer of the certificate. This property contains a string representation of the name of the issuing authority for the certificate.
This property is read-only.
Data Type
String
SSLAcceptServerCertPrivateKey Property (IPWorks3DS_Client Class)
The private key of the certificate (if available).
Object Oriented Interface
public function getSSLAcceptServerCertPrivateKey();
Procedural Interface
ipworks3ds_client_get($res, 135 );
Default Value
''
Remarks
The private key of the certificate (if available). The key is provided as PEM/Base64-encoded data.
Note: The SSLAcceptServerCertPrivateKey may be available but not exportable. In this case, SSLAcceptServerCertPrivateKey returns an empty string.
This property is read-only.
Data Type
String
SSLAcceptServerCertPrivateKeyAvailable Property (IPWorks3DS_Client Class)
Whether a PrivateKey is available for the selected certificate.
Object Oriented Interface
public function getSSLAcceptServerCertPrivateKeyAvailable();
Procedural Interface
ipworks3ds_client_get($res, 136 );
Default Value
false
Remarks
Whether a SSLAcceptServerCertPrivateKey is available for the selected certificate. If SSLAcceptServerCertPrivateKeyAvailable is True, the certificate may be used for authentication purposes (e.g., server authentication).
This property is read-only.
Data Type
Boolean
SSLAcceptServerCertPrivateKeyContainer Property (IPWorks3DS_Client Class)
The name of the PrivateKey container for the certificate (if available).
Object Oriented Interface
public function getSSLAcceptServerCertPrivateKeyContainer();
Procedural Interface
ipworks3ds_client_get($res, 137 );
Default Value
''
Remarks
The name of the SSLAcceptServerCertPrivateKey container for the certificate (if available). This functionality is available only on Windows platforms.
This property is read-only.
Data Type
String
SSLAcceptServerCertPublicKey Property (IPWorks3DS_Client Class)
The public key of the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertPublicKey();
Procedural Interface
ipworks3ds_client_get($res, 138 );
Default Value
''
Remarks
The public key of the certificate. The key is provided as PEM/Base64-encoded data.
This property is read-only.
Data Type
String
SSLAcceptServerCertPublicKeyAlgorithm Property (IPWorks3DS_Client Class)
The textual description of the certificate's public key algorithm.
Object Oriented Interface
public function getSSLAcceptServerCertPublicKeyAlgorithm();
Procedural Interface
ipworks3ds_client_get($res, 139 );
Default Value
''
Remarks
The textual description of the certificate's public key algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_DH") or an object identifier (OID) string representing the algorithm.
This property is read-only.
Data Type
String
SSLAcceptServerCertPublicKeyLength Property (IPWorks3DS_Client Class)
The length of the certificate's public key (in bits).
Object Oriented Interface
public function getSSLAcceptServerCertPublicKeyLength();
Procedural Interface
ipworks3ds_client_get($res, 140 );
Default Value
0
Remarks
The length of the certificate's public key (in bits). Common values are 512, 1024, and 2048.
This property is read-only.
Data Type
Integer
SSLAcceptServerCertSerialNumber Property (IPWorks3DS_Client Class)
The serial number of the certificate encoded as a string.
Object Oriented Interface
public function getSSLAcceptServerCertSerialNumber();
Procedural Interface
ipworks3ds_client_get($res, 141 );
Default Value
''
Remarks
The serial number of the certificate encoded as a string. The number is encoded as a series of hexadecimal digits, with each pair representing a byte of the serial number.
This property is read-only.
Data Type
String
SSLAcceptServerCertSignatureAlgorithm Property (IPWorks3DS_Client Class)
The text description of the certificate's signature algorithm.
Object Oriented Interface
public function getSSLAcceptServerCertSignatureAlgorithm();
Procedural Interface
ipworks3ds_client_get($res, 142 );
Default Value
''
Remarks
The text description of the certificate's signature algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_MD5RSA") or an object identifier (OID) string representing the algorithm.
This property is read-only.
Data Type
String
SSLAcceptServerCertStore Property (IPWorks3DS_Client Class)
The name of the certificate store for the client certificate.
Object Oriented Interface
public function getSSLAcceptServerCertStore(); public function setSSLAcceptServerCertStore($value);
Procedural Interface
ipworks3ds_client_get($res, 143 ); ipworks3ds_client_set($res, 143, $value );
Default Value
'MY'
Remarks
The name of the certificate store for the client certificate.
The SSLAcceptServerCertStoreType property denotes the type of the certificate store specified by SSLAcceptServerCertStore. If the store is password-protected, specify the password in SSLAcceptServerCertStorePassword.
SSLAcceptServerCertStore is used in conjunction with the SSLAcceptServerCertSubject property to specify client certificates. If SSLAcceptServerCertStore has a value, and SSLAcceptServerCertSubject or SSLAcceptServerCertEncoded is set, a search for a certificate is initiated. Please see the SSLAcceptServerCertSubject property for details.
Designations of certificate stores are platform dependent.
The following designations are the most common User and Machine certificate stores in Windows:
MY | A certificate store holding personal certificates with their associated private keys. |
CA | Certifying authority certificates. |
ROOT | Root certificates. |
When the certificate store type is cstPFXFile, this property must be set to the name of the file. When the type is cstPFXBlob, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).
Data Type
Binary String
SSLAcceptServerCertStorePassword Property (IPWorks3DS_Client Class)
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
Object Oriented Interface
public function getSSLAcceptServerCertStorePassword(); public function setSSLAcceptServerCertStorePassword($value);
Procedural Interface
ipworks3ds_client_get($res, 144 ); ipworks3ds_client_set($res, 144, $value );
Default Value
''
Remarks
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
Data Type
String
SSLAcceptServerCertStoreType Property (IPWorks3DS_Client Class)
The type of certificate store for this certificate.
Object Oriented Interface
public function getSSLAcceptServerCertStoreType(); public function setSSLAcceptServerCertStoreType($value);
Procedural Interface
ipworks3ds_client_get($res, 145 ); ipworks3ds_client_set($res, 145, $value );
Default Value
0
Remarks
The type of certificate store for this certificate.
The class supports both public and private keys in a variety of formats. When the cstAuto value is used, the class will automatically determine the type. This property can take one of the following values:
0 (cstUser - default) | For Windows, this specifies that the certificate store is a certificate store owned by the current user.
Note: This store type is not available in Java. |
1 (cstMachine) | For Windows, this specifies that the certificate store is a machine store.
Note: This store type is not available in Java. |
2 (cstPFXFile) | The certificate store is the name of a PFX (PKCS#12) file containing certificates. |
3 (cstPFXBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS#12) format. |
4 (cstJKSFile) | The certificate store is the name of a Java Key Store (JKS) file containing certificates.
Note: This store type is only available in Java. |
5 (cstJKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in Java Key Store (JKS) format.
Note: This store type is only available in Java. |
6 (cstPEMKeyFile) | The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
7 (cstPEMKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
8 (cstPublicKeyFile) | The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate. |
9 (cstPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a PEM- or DER-encoded public key certificate. |
10 (cstSSHPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains an SSH-style public key. |
11 (cstP7BFile) | The certificate store is the name of a PKCS#7 file containing certificates. |
12 (cstP7BBlob) | The certificate store is a string (binary) representing a certificate store in PKCS#7 format. |
13 (cstSSHPublicKeyFile) | The certificate store is the name of a file that contains an SSH-style public key. |
14 (cstPPKFile) | The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
15 (cstPPKBlob) | The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
16 (cstXMLFile) | The certificate store is the name of a file that contains a certificate in XML format. |
17 (cstXMLBlob) | The certificate store is a string that contains a certificate in XML format. |
18 (cstJWKFile) | The certificate store is the name of a file that contains a JWK (JSON Web Key). |
19 (cstJWKBlob) | The certificate store is a string that contains a JWK (JSON Web Key). |
21 (cstBCFKSFile) | The certificate store is the name of a file that contains a BCFKS (Bouncy Castle FIPS Key Store).
Note: This store type is only available in Java and .NET. |
22 (cstBCFKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in BCFKS (Bouncy Castle FIPS Key Store) format.
Note: This store type is only available in Java and .NET. |
23 (cstPKCS11) | The certificate is present on a physical security key accessible via a PKCS#11 interface.
To use a security key, the necessary data must first be collected using the CertMgr class. The ListStoreCertificates method may be called after setting CertStoreType to cstPKCS11, CertStorePassword to the PIN, and CertStore to the full path of the PKCS#11 DLL. The certificate information returned in the CertList event's CertEncoded parameter may be saved for later use. When using a certificate, pass the previously saved security key information as the SSLAcceptServerCertStore and set SSLAcceptServerCertStorePassword to the PIN. Code Example. SSH Authentication with Security Key:
|
99 (cstAuto) | The store type is automatically detected from the input data. This setting may be used with both public and private keys and can detect any of the supported formats automatically. |
Data Type
Integer
SSLAcceptServerCertSubjectAltNames Property (IPWorks3DS_Client Class)
Comma-separated lists of alternative subject names for the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertSubjectAltNames();
Procedural Interface
ipworks3ds_client_get($res, 146 );
Default Value
''
Remarks
Comma-separated lists of alternative subject names for the certificate.
This property is read-only.
Data Type
String
SSLAcceptServerCertThumbprintMD5 Property (IPWorks3DS_Client Class)
The MD5 hash of the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertThumbprintMD5();
Procedural Interface
ipworks3ds_client_get($res, 147 );
Default Value
''
Remarks
The MD5 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLAcceptServerCertThumbprintSHA1 Property (IPWorks3DS_Client Class)
The SHA-1 hash of the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertThumbprintSHA1();
Procedural Interface
ipworks3ds_client_get($res, 148 );
Default Value
''
Remarks
The SHA-1 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLAcceptServerCertThumbprintSHA256 Property (IPWorks3DS_Client Class)
The SHA-256 hash of the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertThumbprintSHA256();
Procedural Interface
ipworks3ds_client_get($res, 149 );
Default Value
''
Remarks
The SHA-256 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLAcceptServerCertUsage Property (IPWorks3DS_Client Class)
The text description of UsageFlags .
Object Oriented Interface
public function getSSLAcceptServerCertUsage();
Procedural Interface
ipworks3ds_client_get($res, 150 );
Default Value
''
Remarks
The text description of SSLAcceptServerCertUsageFlags.
This value will be one or more of the following strings and will be separated by commas:
- Digital Signature
- Non-Repudiation
- Key Encipherment
- Data Encipherment
- Key Agreement
- Certificate Signing
- CRL Signing
- Encipher Only
If the provider is OpenSSL, the value is a comma-separated list of X.509 certificate extension names.
This property is read-only.
Data Type
String
SSLAcceptServerCertUsageFlags Property (IPWorks3DS_Client Class)
The flags that show intended use for the certificate.
Object Oriented Interface
public function getSSLAcceptServerCertUsageFlags();
Procedural Interface
ipworks3ds_client_get($res, 151 );
Default Value
0
Remarks
The flags that show intended use for the certificate. The value of SSLAcceptServerCertUsageFlags is a combination of the following flags:
0x80 | Digital Signature |
0x40 | Non-Repudiation |
0x20 | Key Encipherment |
0x10 | Data Encipherment |
0x08 | Key Agreement |
0x04 | Certificate Signing |
0x02 | CRL Signing |
0x01 | Encipher Only |
Please see the SSLAcceptServerCertUsage property for a text representation of SSLAcceptServerCertUsageFlags.
This functionality currently is not available when the provider is OpenSSL.
This property is read-only.
Data Type
Integer
SSLAcceptServerCertVersion Property (IPWorks3DS_Client Class)
The certificate's version number.
Object Oriented Interface
public function getSSLAcceptServerCertVersion();
Procedural Interface
ipworks3ds_client_get($res, 152 );
Default Value
''
Remarks
The certificate's version number. The possible values are the strings "V1", "V2", and "V3".
This property is read-only.
Data Type
String
SSLAcceptServerCertSubject Property (IPWorks3DS_Client Class)
The subject of the certificate used for client authentication.
Object Oriented Interface
public function getSSLAcceptServerCertSubject(); public function setSSLAcceptServerCertSubject($value);
Procedural Interface
ipworks3ds_client_get($res, 153 ); ipworks3ds_client_set($res, 153, $value );
Default Value
''
Remarks
The subject of the certificate used for client authentication.
This property must be set after all other certificate properties are set. When this property is set, a search is performed in the current certificate store to locate a certificate with a matching subject.
If a matching certificate is found, the property is set to the full subject of the matching certificate.
If an exact match is not found, the store is searched for subjects containing the value of the property.
If a match is still not found, the property is set to an empty string, and no certificate is selected.
The special value "*" picks a random certificate in the certificate store.
The certificate subject is a comma-separated list of distinguished name fields and values. For instance, "CN=www.server.com, OU=test, C=US, E=support@nsoftware.com". Common fields and their meanings are as follows:
Field | Meaning |
CN | Common Name. This is commonly a hostname like www.server.com. |
O | Organization |
OU | Organizational Unit |
L | Locality |
S | State |
C | Country |
E | Email Address |
If a field value contains a comma, it must be quoted.
Data Type
String
SSLAcceptServerCertEncoded Property (IPWorks3DS_Client Class)
The certificate (PEM/Base64 encoded).
Object Oriented Interface
public function getSSLAcceptServerCertEncoded(); public function setSSLAcceptServerCertEncoded($value);
Procedural Interface
ipworks3ds_client_get($res, 154 ); ipworks3ds_client_set($res, 154, $value );
Default Value
''
Remarks
The certificate (PEM/Base64 encoded). This property is used to assign a specific certificate. The SSLAcceptServerCertStore and SSLAcceptServerCertSubject properties also may be used to specify a certificate.
When SSLAcceptServerCertEncoded is set, a search is initiated in the current SSLAcceptServerCertStore for the private key of the certificate. If the key is found, SSLAcceptServerCertSubject is updated to reflect the full subject of the selected certificate; otherwise, SSLAcceptServerCertSubject is set to an empty string.
This property is not available at design time.
Data Type
Binary String
SSLCertEffectiveDate Property (IPWorks3DS_Client Class)
The date on which this certificate becomes valid.
Object Oriented Interface
public function getSSLCertEffectiveDate();
Procedural Interface
ipworks3ds_client_get($res, 155 );
Default Value
''
Remarks
The date on which this certificate becomes valid. Before this date, it is not valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:
23-Jan-2000 15:00:00.
This property is read-only.
Data Type
String
SSLCertExpirationDate Property (IPWorks3DS_Client Class)
The date on which the certificate expires.
Object Oriented Interface
public function getSSLCertExpirationDate();
Procedural Interface
ipworks3ds_client_get($res, 156 );
Default Value
''
Remarks
The date on which the certificate expires. After this date, the certificate will no longer be valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:
23-Jan-2001 15:00:00.
This property is read-only.
Data Type
String
SSLCertExtendedKeyUsage Property (IPWorks3DS_Client Class)
A comma-delimited list of extended key usage identifiers.
Object Oriented Interface
public function getSSLCertExtendedKeyUsage();
Procedural Interface
ipworks3ds_client_get($res, 157 );
Default Value
''
Remarks
A comma-delimited list of extended key usage identifiers. These are the same as ASN.1 object identifiers (OIDs).
This property is read-only.
Data Type
String
SSLCertFingerprint Property (IPWorks3DS_Client Class)
The hex-encoded, 16-byte MD5 fingerprint of the certificate.
Object Oriented Interface
public function getSSLCertFingerprint();
Procedural Interface
ipworks3ds_client_get($res, 158 );
Default Value
''
Remarks
The hex-encoded, 16-byte MD5 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: bc:2a:72:af:fe:58:17:43:7a:5f:ba:5a:7c:90:f7:02
This property is read-only.
Data Type
String
SSLCertFingerprintSHA1 Property (IPWorks3DS_Client Class)
The hex-encoded, 20-byte SHA-1 fingerprint of the certificate.
Object Oriented Interface
public function getSSLCertFingerprintSHA1();
Procedural Interface
ipworks3ds_client_get($res, 159 );
Default Value
''
Remarks
The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: 30:7b:fa:38:65:83:ff:da:b4:4e:07:3f:17:b8:a4:ed:80:be:ff:84
This property is read-only.
Data Type
String
SSLCertFingerprintSHA256 Property (IPWorks3DS_Client Class)
The hex-encoded, 32-byte SHA-256 fingerprint of the certificate.
Object Oriented Interface
public function getSSLCertFingerprintSHA256();
Procedural Interface
ipworks3ds_client_get($res, 160 );
Default Value
''
Remarks
The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: 6a:80:5c:33:a9:43:ea:b0:96:12:8a:64:96:30:ef:4a:8a:96:86:ce:f4:c7:be:10:24:8e:2b:60:9e:f3:59:53
This property is read-only.
Data Type
String
SSLCertIssuer Property (IPWorks3DS_Client Class)
The issuer of the certificate.
Object Oriented Interface
public function getSSLCertIssuer();
Procedural Interface
ipworks3ds_client_get($res, 161 );
Default Value
''
Remarks
The issuer of the certificate. This property contains a string representation of the name of the issuing authority for the certificate.
This property is read-only.
Data Type
String
SSLCertPrivateKey Property (IPWorks3DS_Client Class)
The private key of the certificate (if available).
Object Oriented Interface
public function getSSLCertPrivateKey();
Procedural Interface
ipworks3ds_client_get($res, 162 );
Default Value
''
Remarks
The private key of the certificate (if available). The key is provided as PEM/Base64-encoded data.
Note: The SSLCertPrivateKey may be available but not exportable. In this case, SSLCertPrivateKey returns an empty string.
This property is read-only.
Data Type
String
SSLCertPrivateKeyAvailable Property (IPWorks3DS_Client Class)
Whether a PrivateKey is available for the selected certificate.
Object Oriented Interface
public function getSSLCertPrivateKeyAvailable();
Procedural Interface
ipworks3ds_client_get($res, 163 );
Default Value
false
Remarks
Whether a SSLCertPrivateKey is available for the selected certificate. If SSLCertPrivateKeyAvailable is True, the certificate may be used for authentication purposes (e.g., server authentication).
This property is read-only.
Data Type
Boolean
SSLCertPrivateKeyContainer Property (IPWorks3DS_Client Class)
The name of the PrivateKey container for the certificate (if available).
Object Oriented Interface
public function getSSLCertPrivateKeyContainer();
Procedural Interface
ipworks3ds_client_get($res, 164 );
Default Value
''
Remarks
The name of the SSLCertPrivateKey container for the certificate (if available). This functionality is available only on Windows platforms.
This property is read-only.
Data Type
String
SSLCertPublicKey Property (IPWorks3DS_Client Class)
The public key of the certificate.
Object Oriented Interface
public function getSSLCertPublicKey();
Procedural Interface
ipworks3ds_client_get($res, 165 );
Default Value
''
Remarks
The public key of the certificate. The key is provided as PEM/Base64-encoded data.
This property is read-only.
Data Type
String
SSLCertPublicKeyAlgorithm Property (IPWorks3DS_Client Class)
The textual description of the certificate's public key algorithm.
Object Oriented Interface
public function getSSLCertPublicKeyAlgorithm();
Procedural Interface
ipworks3ds_client_get($res, 166 );
Default Value
''
Remarks
The textual description of the certificate's public key algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_DH") or an object identifier (OID) string representing the algorithm.
This property is read-only.
Data Type
String
SSLCertPublicKeyLength Property (IPWorks3DS_Client Class)
The length of the certificate's public key (in bits).
Object Oriented Interface
public function getSSLCertPublicKeyLength();
Procedural Interface
ipworks3ds_client_get($res, 167 );
Default Value
0
Remarks
The length of the certificate's public key (in bits). Common values are 512, 1024, and 2048.
This property is read-only.
Data Type
Integer
SSLCertSerialNumber Property (IPWorks3DS_Client Class)
The serial number of the certificate encoded as a string.
Object Oriented Interface
public function getSSLCertSerialNumber();
Procedural Interface
ipworks3ds_client_get($res, 168 );
Default Value
''
Remarks
The serial number of the certificate encoded as a string. The number is encoded as a series of hexadecimal digits, with each pair representing a byte of the serial number.
This property is read-only.
Data Type
String
SSLCertSignatureAlgorithm Property (IPWorks3DS_Client Class)
The text description of the certificate's signature algorithm.
Object Oriented Interface
public function getSSLCertSignatureAlgorithm();
Procedural Interface
ipworks3ds_client_get($res, 169 );
Default Value
''
Remarks
The text description of the certificate's signature algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_MD5RSA") or an object identifier (OID) string representing the algorithm.
This property is read-only.
Data Type
String
SSLCertStore Property (IPWorks3DS_Client Class)
The name of the certificate store for the client certificate.
Object Oriented Interface
public function getSSLCertStore(); public function setSSLCertStore($value);
Procedural Interface
ipworks3ds_client_get($res, 170 ); ipworks3ds_client_set($res, 170, $value );
Default Value
'MY'
Remarks
The name of the certificate store for the client certificate.
The SSLCertStoreType property denotes the type of the certificate store specified by SSLCertStore. If the store is password-protected, specify the password in SSLCertStorePassword.
SSLCertStore is used in conjunction with the SSLCertSubject property to specify client certificates. If SSLCertStore has a value, and SSLCertSubject or SSLCertEncoded is set, a search for a certificate is initiated. Please see the SSLCertSubject property for details.
Designations of certificate stores are platform dependent.
The following designations are the most common User and Machine certificate stores in Windows:
MY | A certificate store holding personal certificates with their associated private keys. |
CA | Certifying authority certificates. |
ROOT | Root certificates. |
When the certificate store type is cstPFXFile, this property must be set to the name of the file. When the type is cstPFXBlob, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).
Data Type
Binary String
SSLCertStorePassword Property (IPWorks3DS_Client Class)
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
Object Oriented Interface
public function getSSLCertStorePassword(); public function setSSLCertStorePassword($value);
Procedural Interface
ipworks3ds_client_get($res, 171 ); ipworks3ds_client_set($res, 171, $value );
Default Value
''
Remarks
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
Data Type
String
SSLCertStoreType Property (IPWorks3DS_Client Class)
The type of certificate store for this certificate.
Object Oriented Interface
public function getSSLCertStoreType(); public function setSSLCertStoreType($value);
Procedural Interface
ipworks3ds_client_get($res, 172 ); ipworks3ds_client_set($res, 172, $value );
Default Value
0
Remarks
The type of certificate store for this certificate.
The class supports both public and private keys in a variety of formats. When the cstAuto value is used, the class will automatically determine the type. This property can take one of the following values:
0 (cstUser - default) | For Windows, this specifies that the certificate store is a certificate store owned by the current user.
Note: This store type is not available in Java. |
1 (cstMachine) | For Windows, this specifies that the certificate store is a machine store.
Note: This store type is not available in Java. |
2 (cstPFXFile) | The certificate store is the name of a PFX (PKCS#12) file containing certificates. |
3 (cstPFXBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS#12) format. |
4 (cstJKSFile) | The certificate store is the name of a Java Key Store (JKS) file containing certificates.
Note: This store type is only available in Java. |
5 (cstJKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in Java Key Store (JKS) format.
Note: This store type is only available in Java. |
6 (cstPEMKeyFile) | The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
7 (cstPEMKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
8 (cstPublicKeyFile) | The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate. |
9 (cstPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a PEM- or DER-encoded public key certificate. |
10 (cstSSHPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains an SSH-style public key. |
11 (cstP7BFile) | The certificate store is the name of a PKCS#7 file containing certificates. |
12 (cstP7BBlob) | The certificate store is a string (binary) representing a certificate store in PKCS#7 format. |
13 (cstSSHPublicKeyFile) | The certificate store is the name of a file that contains an SSH-style public key. |
14 (cstPPKFile) | The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
15 (cstPPKBlob) | The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
16 (cstXMLFile) | The certificate store is the name of a file that contains a certificate in XML format. |
17 (cstXMLBlob) | The certificate store is a string that contains a certificate in XML format. |
18 (cstJWKFile) | The certificate store is the name of a file that contains a JWK (JSON Web Key). |
19 (cstJWKBlob) | The certificate store is a string that contains a JWK (JSON Web Key). |
21 (cstBCFKSFile) | The certificate store is the name of a file that contains a BCFKS (Bouncy Castle FIPS Key Store).
Note: This store type is only available in Java and .NET. |
22 (cstBCFKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in BCFKS (Bouncy Castle FIPS Key Store) format.
Note: This store type is only available in Java and .NET. |
23 (cstPKCS11) | The certificate is present on a physical security key accessible via a PKCS#11 interface.
To use a security key, the necessary data must first be collected using the CertMgr class. The ListStoreCertificates method may be called after setting CertStoreType to cstPKCS11, CertStorePassword to the PIN, and CertStore to the full path of the PKCS#11 DLL. The certificate information returned in the CertList event's CertEncoded parameter may be saved for later use. When using a certificate, pass the previously saved security key information as the SSLCertStore and set SSLCertStorePassword to the PIN. Code Example. SSH Authentication with Security Key:
|
99 (cstAuto) | The store type is automatically detected from the input data. This setting may be used with both public and private keys and can detect any of the supported formats automatically. |
Data Type
Integer
SSLCertSubjectAltNames Property (IPWorks3DS_Client Class)
Comma-separated lists of alternative subject names for the certificate.
Object Oriented Interface
public function getSSLCertSubjectAltNames();
Procedural Interface
ipworks3ds_client_get($res, 173 );
Default Value
''
Remarks
Comma-separated lists of alternative subject names for the certificate.
This property is read-only.
Data Type
String
SSLCertThumbprintMD5 Property (IPWorks3DS_Client Class)
The MD5 hash of the certificate.
Object Oriented Interface
public function getSSLCertThumbprintMD5();
Procedural Interface
ipworks3ds_client_get($res, 174 );
Default Value
''
Remarks
The MD5 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLCertThumbprintSHA1 Property (IPWorks3DS_Client Class)
The SHA-1 hash of the certificate.
Object Oriented Interface
public function getSSLCertThumbprintSHA1();
Procedural Interface
ipworks3ds_client_get($res, 175 );
Default Value
''
Remarks
The SHA-1 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLCertThumbprintSHA256 Property (IPWorks3DS_Client Class)
The SHA-256 hash of the certificate.
Object Oriented Interface
public function getSSLCertThumbprintSHA256();
Procedural Interface
ipworks3ds_client_get($res, 176 );
Default Value
''
Remarks
The SHA-256 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLCertUsage Property (IPWorks3DS_Client Class)
The text description of UsageFlags .
Object Oriented Interface
public function getSSLCertUsage();
Procedural Interface
ipworks3ds_client_get($res, 177 );
Default Value
''
Remarks
The text description of SSLCertUsageFlags.
This value will be one or more of the following strings and will be separated by commas:
- Digital Signature
- Non-Repudiation
- Key Encipherment
- Data Encipherment
- Key Agreement
- Certificate Signing
- CRL Signing
- Encipher Only
If the provider is OpenSSL, the value is a comma-separated list of X.509 certificate extension names.
This property is read-only.
Data Type
String
SSLCertUsageFlags Property (IPWorks3DS_Client Class)
The flags that show intended use for the certificate.
Object Oriented Interface
public function getSSLCertUsageFlags();
Procedural Interface
ipworks3ds_client_get($res, 178 );
Default Value
0
Remarks
The flags that show intended use for the certificate. The value of SSLCertUsageFlags is a combination of the following flags:
0x80 | Digital Signature |
0x40 | Non-Repudiation |
0x20 | Key Encipherment |
0x10 | Data Encipherment |
0x08 | Key Agreement |
0x04 | Certificate Signing |
0x02 | CRL Signing |
0x01 | Encipher Only |
Please see the SSLCertUsage property for a text representation of SSLCertUsageFlags.
This functionality currently is not available when the provider is OpenSSL.
This property is read-only.
Data Type
Integer
SSLCertVersion Property (IPWorks3DS_Client Class)
The certificate's version number.
Object Oriented Interface
public function getSSLCertVersion();
Procedural Interface
ipworks3ds_client_get($res, 179 );
Default Value
''
Remarks
The certificate's version number. The possible values are the strings "V1", "V2", and "V3".
This property is read-only.
Data Type
String
SSLCertSubject Property (IPWorks3DS_Client Class)
The subject of the certificate used for client authentication.
Object Oriented Interface
public function getSSLCertSubject(); public function setSSLCertSubject($value);
Procedural Interface
ipworks3ds_client_get($res, 180 ); ipworks3ds_client_set($res, 180, $value );
Default Value
''
Remarks
The subject of the certificate used for client authentication.
This property must be set after all other certificate properties are set. When this property is set, a search is performed in the current certificate store to locate a certificate with a matching subject.
If a matching certificate is found, the property is set to the full subject of the matching certificate.
If an exact match is not found, the store is searched for subjects containing the value of the property.
If a match is still not found, the property is set to an empty string, and no certificate is selected.
The special value "*" picks a random certificate in the certificate store.
The certificate subject is a comma-separated list of distinguished name fields and values. For instance, "CN=www.server.com, OU=test, C=US, E=support@nsoftware.com". Common fields and their meanings are as follows:
Field | Meaning |
CN | Common Name. This is commonly a hostname like www.server.com. |
O | Organization |
OU | Organizational Unit |
L | Locality |
S | State |
C | Country |
E | Email Address |
If a field value contains a comma, it must be quoted.
Data Type
String
SSLCertEncoded Property (IPWorks3DS_Client Class)
The certificate (PEM/Base64 encoded).
Object Oriented Interface
public function getSSLCertEncoded(); public function setSSLCertEncoded($value);
Procedural Interface
ipworks3ds_client_get($res, 181 ); ipworks3ds_client_set($res, 181, $value );
Default Value
''
Remarks
The certificate (PEM/Base64 encoded). This property is used to assign a specific certificate. The SSLCertStore and SSLCertSubject properties also may be used to specify a certificate.
When SSLCertEncoded is set, a search is initiated in the current SSLCertStore for the private key of the certificate. If the key is found, SSLCertSubject is updated to reflect the full subject of the selected certificate; otherwise, SSLCertSubject is set to an empty string.
This property is not available at design time.
Data Type
Binary String
SSLServerCertEffectiveDate Property (IPWorks3DS_Client Class)
The date on which this certificate becomes valid.
Object Oriented Interface
public function getSSLServerCertEffectiveDate();
Procedural Interface
ipworks3ds_client_get($res, 182 );
Default Value
''
Remarks
The date on which this certificate becomes valid. Before this date, it is not valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:
23-Jan-2000 15:00:00.
This property is read-only.
Data Type
String
SSLServerCertExpirationDate Property (IPWorks3DS_Client Class)
The date on which the certificate expires.
Object Oriented Interface
public function getSSLServerCertExpirationDate();
Procedural Interface
ipworks3ds_client_get($res, 183 );
Default Value
''
Remarks
The date on which the certificate expires. After this date, the certificate will no longer be valid. The date is localized to the system's time zone. The following example illustrates the format of an encoded date:
23-Jan-2001 15:00:00.
This property is read-only.
Data Type
String
SSLServerCertExtendedKeyUsage Property (IPWorks3DS_Client Class)
A comma-delimited list of extended key usage identifiers.
Object Oriented Interface
public function getSSLServerCertExtendedKeyUsage();
Procedural Interface
ipworks3ds_client_get($res, 184 );
Default Value
''
Remarks
A comma-delimited list of extended key usage identifiers. These are the same as ASN.1 object identifiers (OIDs).
This property is read-only.
Data Type
String
SSLServerCertFingerprint Property (IPWorks3DS_Client Class)
The hex-encoded, 16-byte MD5 fingerprint of the certificate.
Object Oriented Interface
public function getSSLServerCertFingerprint();
Procedural Interface
ipworks3ds_client_get($res, 185 );
Default Value
''
Remarks
The hex-encoded, 16-byte MD5 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: bc:2a:72:af:fe:58:17:43:7a:5f:ba:5a:7c:90:f7:02
This property is read-only.
Data Type
String
SSLServerCertFingerprintSHA1 Property (IPWorks3DS_Client Class)
The hex-encoded, 20-byte SHA-1 fingerprint of the certificate.
Object Oriented Interface
public function getSSLServerCertFingerprintSHA1();
Procedural Interface
ipworks3ds_client_get($res, 186 );
Default Value
''
Remarks
The hex-encoded, 20-byte SHA-1 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: 30:7b:fa:38:65:83:ff:da:b4:4e:07:3f:17:b8:a4:ed:80:be:ff:84
This property is read-only.
Data Type
String
SSLServerCertFingerprintSHA256 Property (IPWorks3DS_Client Class)
The hex-encoded, 32-byte SHA-256 fingerprint of the certificate.
Object Oriented Interface
public function getSSLServerCertFingerprintSHA256();
Procedural Interface
ipworks3ds_client_get($res, 187 );
Default Value
''
Remarks
The hex-encoded, 32-byte SHA-256 fingerprint of the certificate. This property is primarily used for keys which do not have a corresponding X.509 public certificate, such as PEM keys that only contain a private key. It is commonly used for SSH keys.
The following example illustrates the format: 6a:80:5c:33:a9:43:ea:b0:96:12:8a:64:96:30:ef:4a:8a:96:86:ce:f4:c7:be:10:24:8e:2b:60:9e:f3:59:53
This property is read-only.
Data Type
String
SSLServerCertIssuer Property (IPWorks3DS_Client Class)
The issuer of the certificate.
Object Oriented Interface
public function getSSLServerCertIssuer();
Procedural Interface
ipworks3ds_client_get($res, 188 );
Default Value
''
Remarks
The issuer of the certificate. This property contains a string representation of the name of the issuing authority for the certificate.
This property is read-only.
Data Type
String
SSLServerCertPrivateKey Property (IPWorks3DS_Client Class)
The private key of the certificate (if available).
Object Oriented Interface
public function getSSLServerCertPrivateKey();
Procedural Interface
ipworks3ds_client_get($res, 189 );
Default Value
''
Remarks
The private key of the certificate (if available). The key is provided as PEM/Base64-encoded data.
Note: The SSLServerCertPrivateKey may be available but not exportable. In this case, SSLServerCertPrivateKey returns an empty string.
This property is read-only.
Data Type
String
SSLServerCertPrivateKeyAvailable Property (IPWorks3DS_Client Class)
Whether a PrivateKey is available for the selected certificate.
Object Oriented Interface
public function getSSLServerCertPrivateKeyAvailable();
Procedural Interface
ipworks3ds_client_get($res, 190 );
Default Value
false
Remarks
Whether a SSLServerCertPrivateKey is available for the selected certificate. If SSLServerCertPrivateKeyAvailable is True, the certificate may be used for authentication purposes (e.g., server authentication).
This property is read-only.
Data Type
Boolean
SSLServerCertPrivateKeyContainer Property (IPWorks3DS_Client Class)
The name of the PrivateKey container for the certificate (if available).
Object Oriented Interface
public function getSSLServerCertPrivateKeyContainer();
Procedural Interface
ipworks3ds_client_get($res, 191 );
Default Value
''
Remarks
The name of the SSLServerCertPrivateKey container for the certificate (if available). This functionality is available only on Windows platforms.
This property is read-only.
Data Type
String
SSLServerCertPublicKey Property (IPWorks3DS_Client Class)
The public key of the certificate.
Object Oriented Interface
public function getSSLServerCertPublicKey();
Procedural Interface
ipworks3ds_client_get($res, 192 );
Default Value
''
Remarks
The public key of the certificate. The key is provided as PEM/Base64-encoded data.
This property is read-only.
Data Type
String
SSLServerCertPublicKeyAlgorithm Property (IPWorks3DS_Client Class)
The textual description of the certificate's public key algorithm.
Object Oriented Interface
public function getSSLServerCertPublicKeyAlgorithm();
Procedural Interface
ipworks3ds_client_get($res, 193 );
Default Value
''
Remarks
The textual description of the certificate's public key algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_DH") or an object identifier (OID) string representing the algorithm.
This property is read-only.
Data Type
String
SSLServerCertPublicKeyLength Property (IPWorks3DS_Client Class)
The length of the certificate's public key (in bits).
Object Oriented Interface
public function getSSLServerCertPublicKeyLength();
Procedural Interface
ipworks3ds_client_get($res, 194 );
Default Value
0
Remarks
The length of the certificate's public key (in bits). Common values are 512, 1024, and 2048.
This property is read-only.
Data Type
Integer
SSLServerCertSerialNumber Property (IPWorks3DS_Client Class)
The serial number of the certificate encoded as a string.
Object Oriented Interface
public function getSSLServerCertSerialNumber();
Procedural Interface
ipworks3ds_client_get($res, 195 );
Default Value
''
Remarks
The serial number of the certificate encoded as a string. The number is encoded as a series of hexadecimal digits, with each pair representing a byte of the serial number.
This property is read-only.
Data Type
String
SSLServerCertSignatureAlgorithm Property (IPWorks3DS_Client Class)
The text description of the certificate's signature algorithm.
Object Oriented Interface
public function getSSLServerCertSignatureAlgorithm();
Procedural Interface
ipworks3ds_client_get($res, 196 );
Default Value
''
Remarks
The text description of the certificate's signature algorithm. The property contains either the name of the algorithm (e.g., "RSA" or "RSA_MD5RSA") or an object identifier (OID) string representing the algorithm.
This property is read-only.
Data Type
String
SSLServerCertStore Property (IPWorks3DS_Client Class)
The name of the certificate store for the client certificate.
Object Oriented Interface
public function getSSLServerCertStore();
Procedural Interface
ipworks3ds_client_get($res, 197 );
Default Value
'MY'
Remarks
The name of the certificate store for the client certificate.
The SSLServerCertStoreType property denotes the type of the certificate store specified by SSLServerCertStore. If the store is password-protected, specify the password in SSLServerCertStorePassword.
SSLServerCertStore is used in conjunction with the SSLServerCertSubject property to specify client certificates. If SSLServerCertStore has a value, and SSLServerCertSubject or SSLServerCertEncoded is set, a search for a certificate is initiated. Please see the SSLServerCertSubject property for details.
Designations of certificate stores are platform dependent.
The following designations are the most common User and Machine certificate stores in Windows:
MY | A certificate store holding personal certificates with their associated private keys. |
CA | Certifying authority certificates. |
ROOT | Root certificates. |
When the certificate store type is cstPFXFile, this property must be set to the name of the file. When the type is cstPFXBlob, the property must be set to the binary contents of a PFX file (i.e., PKCS#12 certificate store).
This property is read-only.
Data Type
Binary String
SSLServerCertStorePassword Property (IPWorks3DS_Client Class)
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
Object Oriented Interface
public function getSSLServerCertStorePassword();
Procedural Interface
ipworks3ds_client_get($res, 198 );
Default Value
''
Remarks
If the type of certificate store requires a password, this property is used to specify the password needed to open the certificate store.
This property is read-only.
Data Type
String
SSLServerCertStoreType Property (IPWorks3DS_Client Class)
The type of certificate store for this certificate.
Object Oriented Interface
public function getSSLServerCertStoreType();
Procedural Interface
ipworks3ds_client_get($res, 199 );
Default Value
0
Remarks
The type of certificate store for this certificate.
The class supports both public and private keys in a variety of formats. When the cstAuto value is used, the class will automatically determine the type. This property can take one of the following values:
0 (cstUser - default) | For Windows, this specifies that the certificate store is a certificate store owned by the current user.
Note: This store type is not available in Java. |
1 (cstMachine) | For Windows, this specifies that the certificate store is a machine store.
Note: This store type is not available in Java. |
2 (cstPFXFile) | The certificate store is the name of a PFX (PKCS#12) file containing certificates. |
3 (cstPFXBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in PFX (PKCS#12) format. |
4 (cstJKSFile) | The certificate store is the name of a Java Key Store (JKS) file containing certificates.
Note: This store type is only available in Java. |
5 (cstJKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in Java Key Store (JKS) format.
Note: This store type is only available in Java. |
6 (cstPEMKeyFile) | The certificate store is the name of a PEM-encoded file that contains a private key and an optional certificate. |
7 (cstPEMKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a private key and an optional certificate. |
8 (cstPublicKeyFile) | The certificate store is the name of a file that contains a PEM- or DER-encoded public key certificate. |
9 (cstPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains a PEM- or DER-encoded public key certificate. |
10 (cstSSHPublicKeyBlob) | The certificate store is a string (binary or Base64-encoded) that contains an SSH-style public key. |
11 (cstP7BFile) | The certificate store is the name of a PKCS#7 file containing certificates. |
12 (cstP7BBlob) | The certificate store is a string (binary) representing a certificate store in PKCS#7 format. |
13 (cstSSHPublicKeyFile) | The certificate store is the name of a file that contains an SSH-style public key. |
14 (cstPPKFile) | The certificate store is the name of a file that contains a PPK (PuTTY Private Key). |
15 (cstPPKBlob) | The certificate store is a string (binary) that contains a PPK (PuTTY Private Key). |
16 (cstXMLFile) | The certificate store is the name of a file that contains a certificate in XML format. |
17 (cstXMLBlob) | The certificate store is a string that contains a certificate in XML format. |
18 (cstJWKFile) | The certificate store is the name of a file that contains a JWK (JSON Web Key). |
19 (cstJWKBlob) | The certificate store is a string that contains a JWK (JSON Web Key). |
21 (cstBCFKSFile) | The certificate store is the name of a file that contains a BCFKS (Bouncy Castle FIPS Key Store).
Note: This store type is only available in Java and .NET. |
22 (cstBCFKSBlob) | The certificate store is a string (binary or Base64-encoded) representing a certificate store in BCFKS (Bouncy Castle FIPS Key Store) format.
Note: This store type is only available in Java and .NET. |
23 (cstPKCS11) | The certificate is present on a physical security key accessible via a PKCS#11 interface.
To use a security key, the necessary data must first be collected using the CertMgr class. The ListStoreCertificates method may be called after setting CertStoreType to cstPKCS11, CertStorePassword to the PIN, and CertStore to the full path of the PKCS#11 DLL. The certificate information returned in the CertList event's CertEncoded parameter may be saved for later use. When using a certificate, pass the previously saved security key information as the SSLServerCertStore and set SSLServerCertStorePassword to the PIN. Code Example. SSH Authentication with Security Key:
|
99 (cstAuto) | The store type is automatically detected from the input data. This setting may be used with both public and private keys and can detect any of the supported formats automatically. |
This property is read-only.
Data Type
Integer
SSLServerCertSubjectAltNames Property (IPWorks3DS_Client Class)
Comma-separated lists of alternative subject names for the certificate.
Object Oriented Interface
public function getSSLServerCertSubjectAltNames();
Procedural Interface
ipworks3ds_client_get($res, 200 );
Default Value
''
Remarks
Comma-separated lists of alternative subject names for the certificate.
This property is read-only.
Data Type
String
SSLServerCertThumbprintMD5 Property (IPWorks3DS_Client Class)
The MD5 hash of the certificate.
Object Oriented Interface
public function getSSLServerCertThumbprintMD5();
Procedural Interface
ipworks3ds_client_get($res, 201 );
Default Value
''
Remarks
The MD5 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLServerCertThumbprintSHA1 Property (IPWorks3DS_Client Class)
The SHA-1 hash of the certificate.
Object Oriented Interface
public function getSSLServerCertThumbprintSHA1();
Procedural Interface
ipworks3ds_client_get($res, 202 );
Default Value
''
Remarks
The SHA-1 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLServerCertThumbprintSHA256 Property (IPWorks3DS_Client Class)
The SHA-256 hash of the certificate.
Object Oriented Interface
public function getSSLServerCertThumbprintSHA256();
Procedural Interface
ipworks3ds_client_get($res, 203 );
Default Value
''
Remarks
The SHA-256 hash of the certificate. It is primarily used for X.509 certificates. If the hash does not already exist, it is automatically computed.
This property is read-only.
Data Type
String
SSLServerCertUsage Property (IPWorks3DS_Client Class)
The text description of UsageFlags .
Object Oriented Interface
public function getSSLServerCertUsage();
Procedural Interface
ipworks3ds_client_get($res, 204 );
Default Value
''
Remarks
The text description of SSLServerCertUsageFlags.
This value will be one or more of the following strings and will be separated by commas:
- Digital Signature
- Non-Repudiation
- Key Encipherment
- Data Encipherment
- Key Agreement
- Certificate Signing
- CRL Signing
- Encipher Only
If the provider is OpenSSL, the value is a comma-separated list of X.509 certificate extension names.
This property is read-only.
Data Type
String
SSLServerCertUsageFlags Property (IPWorks3DS_Client Class)
The flags that show intended use for the certificate.
Object Oriented Interface
public function getSSLServerCertUsageFlags();
Procedural Interface
ipworks3ds_client_get($res, 205 );
Default Value
0
Remarks
The flags that show intended use for the certificate. The value of SSLServerCertUsageFlags is a combination of the following flags:
0x80 | Digital Signature |
0x40 | Non-Repudiation |
0x20 | Key Encipherment |
0x10 | Data Encipherment |
0x08 | Key Agreement |
0x04 | Certificate Signing |
0x02 | CRL Signing |
0x01 | Encipher Only |
Please see the SSLServerCertUsage property for a text representation of SSLServerCertUsageFlags.
This functionality currently is not available when the provider is OpenSSL.
This property is read-only.
Data Type
Integer
SSLServerCertVersion Property (IPWorks3DS_Client Class)
The certificate's version number.
Object Oriented Interface
public function getSSLServerCertVersion();
Procedural Interface
ipworks3ds_client_get($res, 206 );
Default Value
''
Remarks
The certificate's version number. The possible values are the strings "V1", "V2", and "V3".
This property is read-only.
Data Type
String
SSLServerCertSubject Property (IPWorks3DS_Client Class)
The subject of the certificate used for client authentication.
Object Oriented Interface
public function getSSLServerCertSubject();
Procedural Interface
ipworks3ds_client_get($res, 207 );
Default Value
''
Remarks
The subject of the certificate used for client authentication.
This property must be set after all other certificate properties are set. When this property is set, a search is performed in the current certificate store to locate a certificate with a matching subject.
If a matching certificate is found, the property is set to the full subject of the matching certificate.
If an exact match is not found, the store is searched for subjects containing the value of the property.
If a match is still not found, the property is set to an empty string, and no certificate is selected.
The special value "*" picks a random certificate in the certificate store.
The certificate subject is a comma-separated list of distinguished name fields and values. For instance, "CN=www.server.com, OU=test, C=US, E=support@nsoftware.com". Common fields and their meanings are as follows:
Field | Meaning |
CN | Common Name. This is commonly a hostname like www.server.com. |
O | Organization |
OU | Organizational Unit |
L | Locality |
S | State |
C | Country |
E | Email Address |
If a field value contains a comma, it must be quoted.
This property is read-only.
Data Type
String
SSLServerCertEncoded Property (IPWorks3DS_Client Class)
The certificate (PEM/Base64 encoded).
Object Oriented Interface
public function getSSLServerCertEncoded();
Procedural Interface
ipworks3ds_client_get($res, 208 );
Default Value
''
Remarks
The certificate (PEM/Base64 encoded). This property is used to assign a specific certificate. The SSLServerCertStore and SSLServerCertSubject properties also may be used to specify a certificate.
When SSLServerCertEncoded is set, a search is initiated in the current SSLServerCertStore for the private key of the certificate. If the key is found, SSLServerCertSubject is updated to reflect the full subject of the selected certificate; otherwise, SSLServerCertSubject is set to an empty string.
This property is read-only and not available at design time.
Data Type
Binary String
SubmitAuthenticationLabel Property (IPWorks3DS_Client Class)
Label for UI button users select to submit authentication.
Object Oriented Interface
public function getSubmitAuthenticationLabel();
Procedural Interface
ipworks3ds_client_get($res, 209 );
Default Value
''
Remarks
Value of text to be displayed on the UI label on the button users click to submit the authentication information they have entered. Sent in CRes if ACSUIType is 01 (Text), 02 (Single Select) or 02 (Multi Select). App-based only.
This property is read-only.
Data Type
String
Timeout Property (IPWorks3DS_Client Class)
A timeout for the class.
Object Oriented Interface
public function getTimeout(); public function setTimeout($value);
Procedural Interface
ipworks3ds_client_get($res, 210 ); ipworks3ds_client_set($res, 210, $value );
Default Value
30
Remarks
If the Timeout property is set to 0, all operations will run uninterrupted until successful completion or an error condition is encountered.
If Timeout is set to a positive value, the class will wait for the operation to complete before returning control.
The class will use DoEvents to enter an efficient wait loop during any potential waiting period, making sure that all system events are processed immediately as they arrive. This ensures that the host application does not freeze and remains responsive.
If Timeout expires, and the operation is not yet complete, the class fails with an error.
Note: By default, all timeouts are inactivity timeouts, that is, the timeout period is extended by Timeout seconds when any amount of data is successfully sent or received.
The default value for the Timeout property is 30 seconds.
Data Type
Integer
TogglePositionIndicator Property (IPWorks3DS_Client Class)
Toggle Position Indicator.
Object Oriented Interface
public function getTogglePositionIndicator();
Procedural Interface
ipworks3ds_client_get($res, 211 );
Default Value
0
Remarks
Indicates if the Trust List and/or Device Binding prompt should be presented below or above the action buttons.
This property is read-only.
Data Type
Integer
TransactionStatus Property (IPWorks3DS_Client Class)
The transaction status from the last parsed message (ARes, RReq, or CRes).
Object Oriented Interface
public function getTransactionStatus();
Procedural Interface
ipworks3ds_client_get($res, 212 );
Default Value
''
Remarks
Indicates whether a transaction qualifies as an authenticated transaction or account verification. Possible values are:
Y | Authentication/account verification successful. |
N | Not authenticated/account not verified; transaction denied. |
U | Authentication/account verification could not be performed; technical or other problem as indicated in ARes or RReq. |
A | Attempts processing performed; not authenticated/verified, but a proof of attempted authentication/verification is provided. |
C | Challenge required; additional authentication is required using the CReq/CRes. |
R | Authentication/account verification rejected; issuer is rejecting authentication/verification and request that authorization not be attempted. |
D | Challenge required; decoupled authentication confirmed. |
I | Informational only; 3DS Requestor challenge preference acknowledged. |
Note: The CRes message can contain only a value of Y or N. Values of D and I are only applicable for 3DS version 2.2.0.
This property is read-only.
Data Type
String
UseAdditionalChallenge Property (IPWorks3DS_Client Class)
Whether or not the additional choice button is selected.
Object Oriented Interface
public function getUseAdditionalChallenge(); public function setUseAdditionalChallenge($value);
Procedural Interface
ipworks3ds_client_get($res, 213 ); ipworks3ds_client_set($res, 213, $value );
Default Value
false
Remarks
Indicates to the ACS that the Cardholder selected the additional choice.
Data Type
Boolean
UseInformationContinuation Property (IPWorks3DS_Client Class)
Whether or not the Information Continue button is selected.
Object Oriented Interface
public function getUseInformationContinuation(); public function setUseInformationContinuation($value);
Procedural Interface
ipworks3ds_client_get($res, 214 ); ipworks3ds_client_set($res, 214, $value );
Default Value
false
Remarks
Indicator notifying the ACS that the Cardholder selected the Information Continue button in the Information UI template.
Data Type
Boolean
WhitelistingDataEntry Property (IPWorks3DS_Client Class)
Whitelisting Data Entry.
Object Oriented Interface
public function getWhitelistingDataEntry(); public function setWhitelistingDataEntry($value);
Procedural Interface
ipworks3ds_client_get($res, 215 ); ipworks3ds_client_set($res, 215, $value );
Default Value
false
Remarks
An indicator provided by the SDK to the ACS to confirm whether whitelisting was opted by the cardholder (true or false). This is required to be sent after a challenge response is received containing WhitelistingInformationText.
Data Type
Boolean
WhitelistingInformationText Property (IPWorks3DS_Client Class)
Whitelisting information text.
Object Oriented Interface
public function getWhitelistingInformationText();
Procedural Interface
ipworks3ds_client_get($res, 216 );
Default Value
''
Remarks
Text provided by the ACS/Issuer to Cardholder during a Whitelisting transaction. For example: "Would you like to add this Merchant to your whitelist?"
If present in the challenge response, this must be displayed by the SDK.
This property is read-only.
Data Type
String
WhyInformationLabel Property (IPWorks3DS_Client Class)
Label for why information section.
Object Oriented Interface
public function getWhyInformationLabel();
Procedural Interface
ipworks3ds_client_get($res, 217 );
Default Value
''
Remarks
Label provided by the Issuer for the UI "why" information section. Can be sent in CRes. App-based only.
This property is read-only.
Data Type
String
WhyInformationText Property (IPWorks3DS_Client Class)
Text to explain the authentication task to the user.
Object Oriented Interface
public function getWhyInformationText();
Procedural Interface
ipworks3ds_client_get($res, 218 );
Default Value
''
Remarks
Text provided by the Issuer for UI to explain the authentication task to the user in the "why" information section. Can be sent in CRes. App-based only.
This property is read-only.
Data Type
String
AddDeviceParam Method (IPWorks3DS_Client Class)
Adds a device parameter to the collection.
Object Oriented Interface
public function doAddDeviceParam($field, $value, $valuetype, $category);
Procedural Interface
ipworks3ds_client_do_adddeviceparam($res, $field, $value, $valuetype, $category);
Remarks
AddDeviceParam adds a new device parameter to the DeviceParams collection. These parameters should be obtained from the consumer device and a full list of available parameters can be found in the EMV® 3-D Secure SDK-Device Information document provided by EMVCo.
The ValueType parameter specifies the type of the value. Possible values are:
- 1 (Array)
- 2 (String)
Most parameters will have a value type of 2 (String), which will contain a single, string value. Some parameters, however, may require an array of strings. For example, the A040 parameter is defined as containing a set of paired Bluetooth devices. All of these devices can be specified via an array like so:
client.addDeviceParam("A040", "[\"firstDevice\", \"secondDevice\", \"thirdDevice\"]", 1, 1);
There are four categories of device information parameters:
DV - Data Version
This is the version of the data being specified. This is 1.0 by default, but can be set to a different value as shown below. When setting the data version, only the value of the parameter needs to be specified.
client1.AddDeviceParam("", "1.1", 2, 0);
DD - Device Data
This category is used to specify the device parameters collected from the mobile platform.
// the device platform is Android
client1.AddDeviceParam("C001", "Android", 2, 1);
// the device model is an HTC One (M8)
client1.AddDeviceParam("C002", "HTCOne_M8", 2, 1);
DPNA - Device Parameter Not Available
This category is used to specify reasons for unavailable device parameters.
// IP Address couldn't be specified because of a "market or regional restriction on the parameter."
client1.AddDeviceParam("C010", "RE01", 2, 2);
SW - Security Warning
This category of parameter is used to specify security warnings. These are used to let the directory server know of the result of checks made by the application upon initialization. When setting security warning parameters, only the name of the parameter needs to be specified.
// the device is jailbroken
client1.AddDeviceParam("SW01", "", 2, 3);
// A debugger is attached to the app
client1.AddDeviceParam("SW04", "", 2, 3);
AddExtension Method (IPWorks3DS_Client Class)
Adds an extension to the collection.
Object Oriented Interface
public function doAddExtension($id, $name, $critical, $data);
Procedural Interface
ipworks3ds_client_do_addextension($res, $id, $name, $critical, $data);
Remarks
Data necessary to support requirements not otherwise defined in the 3-D Secure message are carried in Message Extensions. AddExtension adds a new extension to the Extensions collection.
Note: The maximum number of extensions is 10.
AddRequestField Method (IPWorks3DS_Client Class)
Adds a field to the data in the request.
Object Oriented Interface
public function doAddRequestField($name, $value, $valuetype);
Procedural Interface
ipworks3ds_client_do_addrequestfield($res, $name, $value, $valuetype);
Remarks
This method can be used to extend the requests constructed by the class. When this method is called, the component will add the specified field to the end of the request.
CheckAuthResponse Method (IPWorks3DS_Client Class)
Checks the received packet.
Object Oriented Interface
public function doCheckAuthResponse($authresponse);
Procedural Interface
ipworks3ds_client_do_checkauthresponse($res, $authresponse);
Remarks
After the response to the authentication request is received from the 3DS Server class, call CheckAuthResponse to verify and parse the response. See the 3DS Server's SendAuthRequest method for details about obtaining the response.
Before calling this method, ACSRootCerts must be populated with the root certificates used by the ACS to sign the response. This method will validate the signature of the signed content if present.
After calling this method, inspect TransactionStatus to determine if the transaction requires a challenge. If TransactionStatus is C, a challenge is required and SendChallengeRequest should be called to proceed with the challenge flow. If TransactionStatus is D, decoupled authentication will take place outside of the 3-D Secure flow and the results will be posted to the 3DS Server.
If TransactionStatus is Y or A, the transaction is complete.
Config Method (IPWorks3DS_Client Class)
Sets or retrieves a configuration setting.
Object Oriented Interface
public function doConfig($configurationstring);
Procedural Interface
ipworks3ds_client_do_config($res, $configurationstring);
Remarks
Config is a generic method available in every class. It is used to set and retrieve configuration settings for the class.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.
To set a configuration setting named PROPERTY, you must call Config("PROPERTY=VALUE"), where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).
To read (query) the value of a configuration setting, you must call Config("PROPERTY"). The value will be returned as a string.
GetAuthRequest Method (IPWorks3DS_Client Class)
Prepares data to be sent by the 3DS Server.
Object Oriented Interface
public function doGetAuthRequest();
Procedural Interface
ipworks3ds_client_do_getauthrequest($res);
Remarks
GetAuthRequest encrypts the device info and prepares all the data necessary to be sent by the 3DS Server class in the SendAuthRequest method.
After calling this method, the returned data must be transmitted via a separate secure channel to the server where 3DS Server is being used.
The following properties are required before calling the method:
Property | Description |
DeviceParams | Contains device information parameters. Add parameters via AddDeviceParam. |
DirectoryServerCert | Used to encrypt the device parameters. |
DirectoryServerId | Identifies the DirectoryServerCert within the directory server. |
SDKAppId | A UUID for the specific installation. |
SDKReferenceNumber | An Id assigned by EMVCo to identify the vendor and software version. |
Calling this method returns required information used by 3DS Server to send the authentication request. Transmit the value returned by this method to the system where 3DS Server is used. The method used to transmit this value is outside the scope of the class.
See SendAuthRequest for details on sending the authentication request after transmitting the data to the 3DS Server.
Calling this method also populates SDKTransactionId which uniquely identifies this transaction and must be used in subsequent calls relating to this transaction, such as SendChallengeRequest.
Interrupt Method (IPWorks3DS_Client Class)
Interrupts the current action.
Object Oriented Interface
public function doInterrupt();
Procedural Interface
ipworks3ds_client_do_interrupt($res);
Remarks
This method interrupts any processing that the class is currently executing.
Reset Method (IPWorks3DS_Client Class)
Clears all properties to their default values.
Object Oriented Interface
public function doReset();
Procedural Interface
ipworks3ds_client_do_reset($res);
Remarks
This method clears all properties to their default values.
ResetTransactionInfo Method (IPWorks3DS_Client Class)
Resets transaction specific information.
Object Oriented Interface
public function doResetTransactionInfo();
Procedural Interface
ipworks3ds_client_do_resettransactioninfo($res);
Remarks
This method must be called between transactions when using the same class instance.
Each transaction that is attempted uses transaction specific values that should not be re-used in subsequent transactions. Call this method to make sure that any transaction specific information is cleared between transactions.
This method resets only the transaction specific information without resetting any other values which have been configured. This allows re-use of the same component instance.
In an App-Based flow the following are reset:
- Internal ephemeral encryption keys
- Values added by AddRequestField
- ACSHTML
- ACSHTMLRefresh
- ACSUIType
- ChallengeAdditionalInformation
- ChallengeComplete
- ChallengeDataEntry
- ChallengeInfoHeader
- ChallengeInfoLabel
- ChallengeInfoText
- EnableChallengeInfoTextIndicator
- ChallengeSelectInfo
- DataPacketOut
- DeviceParams
- ErrorPacket
- ExpandableInformationLabel
- ExpandableInformationText
- IssuerImage1
- IssuerImage2
- IssuerImage3
- OOBContinuationIndicator
- OOBContinueLabel
- PaymentSystemImage1
- PaymentSystemImage2
- PaymentSystemImage3
- ResendInformationLabel
- SDKTransactionId
- SubmitAuthenticationLabel
- TransactionStatus
- WhyInformationLabel
- WhyInformationText
- WhitelistingDataEntry
- WhitelistingInformationText
- ACSSignedContent
- ACSTransactionId
- ACSURL
- ChallengeCancellationIndicator
- DSTransactionId
- DecoupledRequestIndicator
- IncomingRawExtensions
- OutgoingRawExtensions
- Extensions
- IncomingExtensionCount
- IncomingExtensionId
- IncomingExtensionName
- IncomingExtensionCritical
- IncomingExtensionData
- OOBAppLabel
- OOBAppURL
- ResendChallengeInfo
- TransactionStatusReason
- MerchantAppURL
SendChallengeRequest Method (IPWorks3DS_Client Class)
Builds and sends the Challenge Request in an app-based challenge flow.
Object Oriented Interface
public function doSendChallengeRequest();
Procedural Interface
ipworks3ds_client_do_sendchallengerequest($res);
Remarks
SendChallengeRequest sends the Challenge Request to the ACS when a challenge is required.
When the TransactionStatus is C after calling CheckAuthResponse, a challenge to the cardholder is required. This method sends the challenge request and parses the response. The ACS may provide multiple challenges to the cardholder during this process. As a result this method may need to be called multiple times throughout the authentication process.
After this method is called, check ChallengeComplete to determine if the challenge process is complete. If it is complete (True), check TransactionStatus to determine the outcome. If ChallengeComplete is False, additional challenge interaction is required.
First Request
The first time this method is called, information about the required challenge is obtained from the ACS. The ACS connection information is automatically set when CheckAuthResponse is called; there is no need to specify any ACS connection information.
All required properties for the first call to this method are automatically set after CheckAuthResponse is called. If the transaction has been canceled, set ChallengeCancellationIndicator to inform the ACS.
After calling this method, the ACS will respond with details about the challenge to be presented to the cardholder. The ACSUIType property indicates the way the ACS will interact with the cardholder. The ChallengeComplete property will be False after the first call to this method since the challenge interaction is not yet complete.
The following properties are applicable when ACSUIType is Text (01), Single-Select (02), or Multi-Select (03):
- ChallengeSelectInfo
- ChallengeInfoHeader
- ChallengeInfoLabel
- ChallengeInfoText
- EnableChallengeInfoTextIndicator
- ExpandableInformationLabel
- ExpandableInformationText
- IssuerImage1
- IssuerImage2
- IssuerImage3
- PaymentSystemImage1
- PaymentSystemImage2
- PaymentSystemImage3
- ResendInformationLabel
- SubmitAuthenticationLabel
- WhyInformationLabel
- WhyInformationText
Use the values in the above properties to populate values in the native UI in the app. The UI must follow the guidelines defined in the EMV® 3-D Secure specification.
The following properties are applicable when ACSUIType is Out-of-Band (04):
- ChallengeAdditionalInformation
- ChallengeInfoHeader
- ChallengeInfoLabel
- ChallengeInfoText
- EnableChallengeInfoTextIndicator
- ExpandableInformationLabel
- ExpandableInformationText
- IssuerImage1
- IssuerImage2
- IssuerImage3
- OOBContinueLabel
- PaymentSystemImage1
- PaymentSystemImage2
- PaymentSystemImage3
- ResendInformationLabel
- WhyInformationLabel
- WhyInformationText
Use the values in the above properties to populate values in the native UI in the app. The UI must follow the guidelines defined in the EMV® 3-D Secure specification.
The following properties are applicable when ACSUIType is HTML (05):
In the case of an HTML interaction, the app should create a webview and populate this with the HTML in ACSHTML.
As per the EMV® 3-D Secure specification, the HTML UI is presented to the cardholder via a web view which remains in control of the app. The app must intercept any remote URL requests made from within the web view, and instead handle them within the app. Preventing the cardholder from making requests in the web view to another server is critical to the security of the environment. According to the EMVCo specification, intercepting these requests has two effects:
- Prevents malicious HTML from redirecting a user to a phishing site.
- Conceptually puts the web view form under the control of the ACS, rather than the app.
- Navigation attempts from within the web view must be captured by the app and handled internally. This includes all requests including images, javascript files, css, etc.
- The web view element is not utilized as a browser, but as a UI element whose content is provided by the ACS.
Second Request
The second time this method is called, the purpose is to provide a response to the ACS. At this point the customer should have responded to the challenge provided by the ACS in the response to the first call. If the transaction has been canceled, set ChallengeCancellationIndicator to inform the ACS. The following properties are applicable when calling this method the second time:
When ACSUIType is Text (01) or HTML (05), set ChallengeDataEntry to the data exactly as it was specified by the cardholder. Do not format or otherwise change the data.
When ACSUIType is Single-Select (02), set ChallengeDataEntry to the name of the selected option. For instance the ACS may provide the user with a selection like:
mobile: **** **** 329 email: s******k**@g***.comThe value to provide in ChallengeDataEntry is the ChallengeSelectInfoName, i.e. mobile.
When ACSUIType is Multi-Select (03), set ChallengeDataEntry to a comma-separated list of names of the selected options. For instance if ChallengeSelectInfo contains elements with names like chicago_illinois, st_louis_missouri, and portland_oregon, and the user chose two options, the value specified in ChallengeDataEntry would be chicago_illinois,portland_oregon.
When ACSUIType is OOB (04), set OOBContinuationIndicator to True to indicate the cardholder has pressed the button signaling their completing of the OOB process.
Completing the Challenge
After calling SendChallengeRequest a second time with the cardholder's responses, the ACS may require additional challenges. Check the ChallengeComplete property to determine if the challenge is complete. If False, more challenges are required by the ACS and the same process of displaying the challenge info, collecting the response, and submitting it to the ACS should be performed again.
If ChallengeComplete is True, the challenge interaction is complete and TransactionStatus can be inspected to determine whether the transaction was successful.
Note: As part of the challenge completion the ACS also notifies the 3DS Server of the results. This is done by posting the results to the URL defined by the ResultsURL property of the 3DS Server class.
DataPacketIn Event (IPWorks3DS_Client Class)
Fired when receiving a data packet from the server.
Object Oriented Interface
public function fireDataPacketIn($param);
Procedural Interface
ipworks3ds_client_register_callback($res, 1, array($this, 'fireDataPacketIn'));
Parameter List
'datapacket'
Remarks
This event fires when a packet is received. The entire data packet (including all framing and error detection characters) is contained in the DataPacket parameter. This parameter may be inspected for advanced troubleshooting, or to extract additional response properties beyond the scope of this component.
DataPacketOut Event (IPWorks3DS_Client Class)
Fired when sending a data packet to the server.
Object Oriented Interface
public function fireDataPacketOut($param);
Procedural Interface
ipworks3ds_client_register_callback($res, 2, array($this, 'fireDataPacketOut'));
Parameter List
'datapacket'
Remarks
This event fires right before each data packet is sent. The entire data packet (including all framing and error detection characters) is contained in the DataPacket parameter. This parameter may be inspected for advanced troubleshooting, or may be modified to support additional features beyond the scope of this component.
Error Event (IPWorks3DS_Client Class)
Information about errors during data delivery.
Object Oriented Interface
public function fireError($param);
Procedural Interface
ipworks3ds_client_register_callback($res, 3, array($this, 'fireError'));
Parameter List
'errorcode'
'description'
Remarks
The Error event is fired in case of exceptional conditions during message processing.
ErrorCode contains an error code and Description contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the Error Codes section.
Log Event (IPWorks3DS_Client Class)
Fires once for each log message.
Object Oriented Interface
public function fireLog($param);
Procedural Interface
ipworks3ds_client_register_callback($res, 4, array($this, 'fireLog'));
Parameter List
'loglevel'
'message'
'logtype'
Remarks
Logging in the component is handled through the Log event. This will fire anytime a message is built or a response is parsed, including error messages.
When the Log event is fired, the message in question is made available via the Message event parameter. Properties such as EphemeralKey and DeviceParams are also available when they are gathered by the Client. The other event arguments are LogType and LogLevel:
The LogType parameter indicates the type of the log entry. Possible values are:
- "Info"
- "RequestHeaders"
- "ResponseHeaders"
- "RequestBody"
- "ResponseBody"
- "ProxyRequest"
- "ProxyResponse"
- "FirewallRequest"
- "FirewallResponse"
- "AReq"
- "ARes"
- "CReq"
- "CRes"
- "RReq"
- "RRes"
- "PReq"
- "PRes"
- "Erro"
- "EphemeralKey"
- "DeviceParams"
It is recommended to output all messages raised in this event to a file for record keeping purposes, or for later debugging issues that may have come up.
The Server and Client components also have DataPacketIn and DataPacketOut events that fire anytime a data packet is received or sent, respectively. The entire data packet is then accessible in the DataPacket event parameter. For encrypted packets, this would contain the full encrypted data. This parameter may be inspected for advanced troubleshooting.
SSLServerAuthentication Event (IPWorks3DS_Client Class)
Fired after the server presents its certificate to the client.
Object Oriented Interface
public function fireSSLServerAuthentication($param);
Procedural Interface
ipworks3ds_client_register_callback($res, 5, array($this, 'fireSSLServerAuthentication'));
Parameter List
'certencoded'
'certsubject'
'certissuer'
'status'
'accept'
Remarks
During this event, the client can decide whether or not to continue with the connection process. The Accept parameter is a recommendation on whether to continue or close the connection. This is just a suggestion: application software must use its own logic to determine whether or not to continue.
When Accept is False, Status shows why the verification failed (otherwise, Status contains the string OK). If it is decided to continue, you can override and accept the certificate by setting the Accept parameter to True.
SSLStatus Event (IPWorks3DS_Client Class)
Fired when secure connection progress messages are available.
Object Oriented Interface
public function fireSSLStatus($param);
Procedural Interface
ipworks3ds_client_register_callback($res, 6, array($this, 'fireSSLStatus'));
Parameter List
'message'
Remarks
The event is fired for informational and logging purposes only. This event tracks the progress of the connection.
Config Settings (Client Class)
The class accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the class, access to these internal properties is provided through the Config method.Client Config Settings
Use this setting with caution, it should only be enabled when there is a specific reason to do so as it bypasses normal signature validation logic.
01 | Portrait |
02 | Landscape |
03 | Voice |
04 | Other |
Possible values are:
01 | Native UI |
02 | HTML UI |
Possible values are:
01 | Text |
02 | Single Select |
03 | Multi Select |
04 | OOB |
05 | HTML Other (valid only for HTML UI) |
06 | HTML OOB (valid only for 2.3.1) |
07 | Information (valid only for 2.3.1) |
This setting is only applicable to the app-based flow and is informational. It does not need to be queried or set in most cases.
Possible values are:
01 | Native |
02 | HTML |
03 | Both |
One of the elements comprising the Device Rendering Options which define the SDK UI types that the device supports (along with DeviceRenderingInterface). These Options are required in AReq messages.
01 | Text |
02 | Single Select |
04 | Multi Select |
08 | OOB |
16 | HTML Other |
32 | HTML OOB |
64 | Information |
Note that currently all SDKs need to support all UI types. In the future, however, this may change (for example, smart watches may support a UI Type not yet defined). In light of this, all UI types are enabled by default (127).
0 (None) | No events are logged. |
1 (Info - default) | Informational events are logged. |
2 (Verbose) | Detailed data is logged. |
3 (Debug) | Debug data is logged. |
Note: DataPacketOut will always contain the raw unmasked value regardless of this setting. This setting only applies to the Log event.
The default value is True.
For instance: merchantScheme://appName?transID=b2385523-a66c-4907-ac3c-91848e8c0067
Possible values include:
AReq | Authentication Request Message |
ARes | Authentication Response Message |
CReq | Challenge Request Message |
CRes | Challenge Response Message |
PReq | Preparation Request Message |
PRes | Preparation Response Message |
RReq | Results Request Message |
RRes | Results Response Message |
Erro | Error Message |
This setting is read-only.
Note: When sending extension data it is generally recommended to use Extensions instead of this setting.
Possible values are:
2.1.0 (Default) | |
2.2.0 | |
2.3.1 |
Possible values include:
Y | Resend |
N | Do not resend |
01 | Static Passcode |
02 | SMS OTP |
03 | Key fob or EMV card reader OTP |
04 | App OTP |
05 | OTP Other |
06 | KBA |
07 | OOB Biometrics |
08 | OOB Login |
09 | OOB Other |
10 | Other |
11 | Push Notification |
If the same instance of the class is used throughout the lifetime of the transaction this setting does not need to be used.
Possible values are:
01 | Card authentication failed |
02 | Unknown device |
03 | Unsupported device |
04 | Exceeds authentication frequency limit |
05 | Expired card |
06 | Invalid card number |
07 | Invalid transaction |
08 | No Card record |
09 | Security failure |
10 | Stolen card |
11 | Suspected fraud |
12 | Transaction not permitted to cardholder |
13 | Cardholder not enrolled in service |
14 | Transaction timed out at the ACS |
15 | Low confidence |
16 | Medium confidence |
17 | High confidence |
18 | Very high confidence |
19 | Exceeds ACS maximum challenges |
20 | Non-Payment transaction non supported |
21 | 3RI transaction not supported |
22 | ACS technical issue |
23 | Decoupled Authentication required by ACS but not requested by 3DS Requestor |
24 | 3DS Requestor Decoupled Max Expiry Time exceeded |
25 | Decoupled Authentication was provided insufficient time to authenticate cardholder. ACS will not make attempt |
26 | Authentication attempted but not performed by the cardholder |
27 | Preferred Authentication Method not supported |
28 | Validation of content security policy failed |
29 | Authentication attempted but not completed by the Cardholder. Fall back to Decoupled Authentication |
30 | Authentication completed successfully but additional authentication of the Cardholder required. Reinitiate as Decoupled Authentication |
31-79 | Reserved for future EMVCo use (values invalid until defined by EMVCo) |
80-99 | Reserved for DS use |
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
When XPath is set to a valid path, XElement points to the name of the element, with XText, XParent, XSubTree, XChildCount, XChildName[i], and XChildXText[i] providing other properties of the element.
XPath syntax is available for both XML and JSON documents. An XPath is a series of one or more element accessors separated by the / character, for example, /A/B/C/D. An XPath can be absolute (i.e., it starts with /), or it can be relative to the current XPath location.
The following are possible values for an element accessor, which operates relative to the current location specified by the XPath accessors, which proceed it in the overall XPath string:
Accessor | Description |
name | The first element with a particular name. Can be *. |
[i] | The i-th element. |
name[i] | The i-th element with a particular name. |
[last()] | The last element. |
[last()-i] | The element i before the last element. |
name[@attrname="attrvalue"] | The first element with a particular name that contains the specified attribute-value pair.
Supports single and double quotes. (XML Only) |
. | The current element. |
.. | The parent element. |
For example, assume the following XML and JSON responses.
XML:
<firstlevel> <one>value</one> <two> <item>first</item> <item>second</item> </two> <three>value three</three> </firstlevel>
JSON:
{ "firstlevel": { "one": "value", "two": ["first", "second"], "three": "value three" } }
The following are examples of valid XPaths for these responses:
Description | XML XPath | JSON XPath |
Document root | / | /json |
Specific element | /firstlevel/one | /json/firstlevel/one |
i-th child | /firstlevel/two/item[2] | /json/firstlevel/two/[2] |
This list is not exhaustive, but it provides a general idea of the possibilities.
The current element is specified through the XPath configuration setting. This configuration setting is read-only.
The current element is specified in the XPath configuration setting. This configuration setting is read-only.
SSL Config Settings
When enabled, SSL packet logs are output using the SSLStatus event, which will fire each time an SSL packet is sent or received.
Enabling this configuration setting has no effect if SSLProvider is set to Platform.
The path set by this property should point to a directory containing CA certificates in PEM format. The files each contain one CA certificate. The files are looked up by the CA subject name hash value, which must hence be available. If more than one CA certificate with the same name hash value exist, the extension must be different (e.g., 9d66eef0.0, 9d66eef0.1). OpenSSL recommends the use of the c_rehash utility to create the necessary links. Please refer to the OpenSSL man page SSL_CTX_load_verify_locations(3) for details.
The file set by this property should contain a list of CA certificates in PEM format. The file can contain several CA certificates identified by the following sequences:
-----BEGIN CERTIFICATE-----
... (CA certificate in base64 encoding) ...
-----END CERTIFICATE-----
Before, between, and after the certificate text is allowed, which can be used, for example, for descriptions of the certificates. Refer to the OpenSSL man page SSL_CTX_load_verify_locations(3) for details.
The format of this string is described in the OpenSSL man page ciphers(1) section "CIPHER LIST FORMAT". Please refer to it for details. The default string "DEFAULT" is determined at compile time and is normally equivalent to "ALL:!ADH:RC4+RSA:+SSLv2:@STRENGTH".
By default, OpenSSL uses the device file "/dev/urandom" to seed the PRNG, and setting OpenSSLPrngSeedData is not required. If set, the string specified is used to seed the PRNG.
If set to True, the class will reuse the context if and only if the following criteria are met:
- The target host name is the same.
- The system cache entry has not expired (default timeout is 10 hours).
- The application process that calls the function is the same.
- The logon session is the same.
- The instance of the class is the same.
The value is formatted as a list of paths separated by semicolons. The class will check for the existence of each file in the order specified. When a file is found, the CA certificates within the file will be loaded and used to determine the validity of server or client certificates.
The default value is as follows:
/etc/ssl/ca-bundle.pem;/etc/pki/tls/certs/ca-bundle.crt;/etc/ssl/certs/ca-certificates.crt;/etc/pki/tls/cacert.pem
-----BEGIN CERTIFICATE----- MIIEKzCCAxOgAwIBAgIRANTET4LIkxdH6P+CFIiHvTowDQYJKoZIhvcNAQELBQAw ... Intermediate Cert ... eWHV5OW1K53o/atv59sOiW5K3crjFhsBOd5Q+cJJnU+SWinPKtANXMht+EDvYY2w F0I1XhM+pKj7FjDr+XNj -----END CERTIFICATE----- \r \n -----BEGIN CERTIFICATE----- MIIEFjCCAv6gAwIBAgIQetu1SMxpnENAnnOz1P+PtTANBgkqhkiG9w0BAQUFADBp ... Root Cert ... d8q23djXZbVYiIfE9ebr4g3152BlVCHZ2GyPdjhIuLeH21VbT/dyEHHA -----END CERTIFICATE-----
When set to 0 (default), the CRL check will not be performed by the class. When set to 1, it will attempt to perform the CRL check, but it will continue without an error if the server's certificate does not support CRL. When set to 2, it will perform the CRL check and will throw an error if CRL is not supported.
This configuration setting is supported only in the Java, C#, and C++ editions. In the C++ edition, it is supported only on Windows operating systems.
When set to 0 (default), the class will not perform an OCSP check. When set to 1, it will attempt to perform the OCSP check, but it will continue without an error if the server's certificate does not support OCSP. When set to 2, it will perform the OCSP check and will throw an error if OCSP is not supported.
This configuration setting is supported only in the Java, C#, and C++ editions. In the C++ edition, it is supported only on Windows operating systems.
Note: This configuration setting contains the minimum cipher strength requested from the security library. The actual cipher strength used for the connection is shown by the SSLStatus event.
Use this configuration setting with caution. Requesting a lower cipher strength than necessary could potentially cause serious security vulnerabilities in your application.
When the provider is OpenSSL, SSLCipherStrength is currently not supported. This functionality is instead made available through the OpenSSLCipherList configuration setting.
The value of this configuration setting is a newline-separated (CR/LF) list of certificates. For instance:
-----BEGIN CERTIFICATE----- MIIEKzCCAxOgAwIBAgIRANTET4LIkxdH6P+CFIiHvTowDQYJKoZIhvcNAQELBQAw ... Intermediate Cert ... eWHV5OW1K53o/atv59sOiW5K3crjFhsBOd5Q+cJJnU+SWinPKtANXMht+EDvYY2w F0I1XhM+pKj7FjDr+XNj -----END CERTIFICATE----- \r \n -----BEGIN CERTIFICATE----- MIIEFjCCAv6gAwIBAgIQetu1SMxpnENAnnOz1P+PtTANBgkqhkiG9w0BAQUFADBp ... Root Cert ... d8q23djXZbVYiIfE9ebr4g3152BlVCHZ2GyPdjhIuLeH21VbT/dyEHHA -----END CERTIFICATE-----
By default, the enabled cipher suites will include all available ciphers ("*").
The special value "*" means that the class will pick all of the supported cipher suites. If SSLEnabledCipherSuites is set to any other value, only the specified cipher suites will be considered.
Multiple cipher suites are separated by semicolons.
Example values when SSLProvider is set to Platform include the following:
obj.config("SSLEnabledCipherSuites=*");
obj.config("SSLEnabledCipherSuites=CALG_AES_256");
obj.config("SSLEnabledCipherSuites=CALG_AES_256;CALG_3DES");
Possible values when SSLProvider is set to Platform include the following:
- CALG_3DES
- CALG_3DES_112
- CALG_AES
- CALG_AES_128
- CALG_AES_192
- CALG_AES_256
- CALG_AGREEDKEY_ANY
- CALG_CYLINK_MEK
- CALG_DES
- CALG_DESX
- CALG_DH_EPHEM
- CALG_DH_SF
- CALG_DSS_SIGN
- CALG_ECDH
- CALG_ECDH_EPHEM
- CALG_ECDSA
- CALG_ECMQV
- CALG_HASH_REPLACE_OWF
- CALG_HUGHES_MD5
- CALG_HMAC
- CALG_KEA_KEYX
- CALG_MAC
- CALG_MD2
- CALG_MD4
- CALG_MD5
- CALG_NO_SIGN
- CALG_OID_INFO_CNG_ONLY
- CALG_OID_INFO_PARAMETERS
- CALG_PCT1_MASTER
- CALG_RC2
- CALG_RC4
- CALG_RC5
- CALG_RSA_KEYX
- CALG_RSA_SIGN
- CALG_SCHANNEL_ENC_KEY
- CALG_SCHANNEL_MAC_KEY
- CALG_SCHANNEL_MASTER_HASH
- CALG_SEAL
- CALG_SHA
- CALG_SHA1
- CALG_SHA_256
- CALG_SHA_384
- CALG_SHA_512
- CALG_SKIPJACK
- CALG_SSL2_MASTER
- CALG_SSL3_MASTER
- CALG_SSL3_SHAMD5
- CALG_TEK
- CALG_TLS1_MASTER
- CALG_TLS1PRF
obj.config("SSLEnabledCipherSuites=*");
obj.config("SSLEnabledCipherSuites=TLS_DHE_DSS_WITH_AES_128_CBC_SHA");
obj.config("SSLEnabledCipherSuites=TLS_DHE_DSS_WITH_AES_128_CBC_SHA;TLS_ECDH_RSA_WITH_AES_128_CBC_SHA");
Possible values when SSLProvider is set to Internal include the following:
- TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
- TLS_RSA_WITH_AES_256_GCM_SHA384
- TLS_RSA_WITH_AES_128_GCM_SHA256
- TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
- TLS_DHE_DSS_WITH_AES_256_GCM_SHA384
- TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
- TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
- TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
- TLS_DHE_DSS_WITH_AES_128_GCM_SHA256
- TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
- TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
- TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
- TLS_DHE_DSS_WITH_AES_256_CBC_SHA256
- TLS_RSA_WITH_AES_256_CBC_SHA256
- TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
- TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
- TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
- TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
- TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
- TLS_RSA_WITH_AES_128_CBC_SHA256
- TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
- TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
- TLS_DHE_DSS_WITH_AES_128_CBC_SHA256
- TLS_RSA_WITH_AES_256_CBC_SHA
- TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
- TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
- TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
- TLS_DHE_RSA_WITH_AES_256_CBC_SHA
- TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
- TLS_DHE_DSS_WITH_AES_256_CBC_SHA
- TLS_RSA_WITH_AES_128_CBC_SHA
- TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
- TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
- TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
- TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
- TLS_DHE_RSA_WITH_AES_128_CBC_SHA
- TLS_DHE_DSS_WITH_AES_128_CBC_SHA
- TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
- TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
- TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
- TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
- TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
- TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA
- TLS_RSA_WITH_3DES_EDE_CBC_SHA
- TLS_RSA_WITH_DES_CBC_SHA
- TLS_DHE_RSA_WITH_DES_CBC_SHA
- TLS_DHE_DSS_WITH_DES_CBC_SHA
- TLS_RSA_WITH_RC4_128_MD5
- TLS_RSA_WITH_RC4_128_SHA
When TLS 1.3 is negotiated (see SSLEnabledProtocols), only the following cipher suites are supported:
- TLS_AES_256_GCM_SHA384
- TLS_CHACHA20_POLY1305_SHA256
- TLS_AES_128_GCM_SHA256
SSLEnabledCipherSuites is used together with SSLCipherStrength.
Not all supported protocols are enabled by default. The default value is 4032 for client components, and 3072 for server components. To specify a combination of enabled protocol versions set this config to the binary OR of one or more of the following values:
TLS1.3 | 12288 (Hex 3000) |
TLS1.2 | 3072 (Hex C00) (Default - Client and Server) |
TLS1.1 | 768 (Hex 300) (Default - Client) |
TLS1 | 192 (Hex C0) (Default - Client) |
SSL3 | 48 (Hex 30) |
SSL2 | 12 (Hex 0C) |
Note that only TLS 1.2 is enabled for server components that accept incoming connections. This adheres to industry standards to ensure a secure connection. Client components enable TLS 1.0, TLS 1.1, and TLS 1.2 by default and will negotiate the highest mutually supported version when connecting to a server, which should be TLS 1.2 in most cases.
SSLEnabledProtocols: Transport Layer Security (TLS) 1.3 Notes:
By default when TLS 1.3 is enabled, the class will use the internal TLS implementation when the SSLProvider is set to Automatic for all editions.
In editions that are designed to run on Windows, SSLProvider can be set to Platform to use the platform implementation instead of the internal implementation. When configured in this manner, please note that the platform provider is supported only on Windows 11/Windows Server 2022 and up. The default internal provider is available on all platforms and is not restricted to any specific OS version.
If set to 1 (Platform provider), please be aware of the following notes:
- The platform provider is available only on Windows 11/Windows Server 2022 and up.
- SSLEnabledCipherSuites and other similar SSL configuration settings are not supported.
- If SSLEnabledProtocols includes both TLS 1.3 and TLS 1.2, these restrictions are still applicable even if TLS 1.2 is negotiated. Enabling TLS 1.3 with the platform provider changes the implementation used for all TLS versions.
SSLEnabledProtocols: SSL2 and SSL3 Notes:
SSL 2.0 and 3.0 are not supported by the class when the SSLProvider is set to internal. To use SSL 2.0 or SSL 3.0, the platform security API must have the protocols enabled and SSLProvider needs to be set to platform.
This configuration setting is applicable only when SSLProvider is set to Internal.
If set to True, all certificates returned by the server will be present in the Encoded parameter of the SSLServerAuthentication event. This includes the leaf certificate, any intermediate certificate, and the root certificate.
When set, the class will save the session secrets in the same format as the SSLKEYLOGFILE environment variable functionality used by most major browsers and tools, such as Chrome, Firefox, and cURL. This file can then be used in tools such as Wireshark to decrypt TLS traffic for debugging purposes. When writing to this file, the class will only append, it will not overwrite previous values.
Note: This configuration setting is applicable only when SSLProvider is set to Internal.
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedCipher[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedCipherStrength[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedCipherSuite[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedKeyExchange[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedKeyExchangeStrength[connId]");
Note: For server components (e.g., TCPServer), this is a per-connection configuration setting accessed by passing the ConnectionId. For example:
server.Config("SSLNegotiatedVersion[connId]");
0x00000001 | Ignore time validity status of certificate. |
0x00000002 | Ignore time validity status of CTL. |
0x00000004 | Ignore non-nested certificate times. |
0x00000010 | Allow unknown certificate authority. |
0x00000020 | Ignore wrong certificate usage. |
0x00000100 | Ignore unknown certificate revocation status. |
0x00000200 | Ignore unknown CTL signer revocation status. |
0x00000400 | Ignore unknown certificate authority revocation status. |
0x00000800 | Ignore unknown root revocation status. |
0x00008000 | Allow test root certificate. |
0x00004000 | Trust test root certificate. |
0x80000000 | Ignore non-matching CN (certificate CN non-matching server name). |
This functionality is currently not available when the provider is OpenSSL.
The value of this configuration setting is a newline-separated (CR/LF) list of certificates. For instance:
-----BEGIN CERTIFICATE----- MIIEKzCCAxOgAwIBAgIRANTET4LIkxdH6P+CFIiHvTowDQYJKoZIhvcNAQELBQAw ... Intermediate Cert... eWHV5OW1K53o/atv59sOiW5K3crjFhsBOd5Q+cJJnU+SWinPKtANXMht+EDvYY2w F0I1XhM+pKj7FjDr+XNj -----END CERTIFICATE----- \r \n -----BEGIN CERTIFICATE----- MIIEFjCCAv6gAwIBAgIQetu1SMxpnENAnnOz1P+PtTANBgkqhkiG9w0BAQUFADBp ... Root Cert... d8q23djXZbVYiIfE9ebr4g3152BlVCHZ2GyPdjhIuLeH21VbT/dyEHHA -----END CERTIFICATE-----
When specified the class will verify that the server certificate signature algorithm is among the values specified in this configuration setting. If the server certificate signature algorithm is unsupported, the class fails with an error.
The format of this value is a comma-separated list of hash-signature combinations. For instance:
component.SSLProvider = TCPClientSSLProviders.sslpInternal;
component.Config("SSLEnabledProtocols=3072"); //TLS 1.2
component.Config("TLS12SignatureAlgorithms=sha256-rsa,sha256-dsa,sha1-rsa,sha1-dsa");
The default value for this configuration setting is sha512-ecdsa,sha512-rsa,sha512-dsa,sha384-ecdsa,sha384-rsa,sha384-dsa,sha256-ecdsa,sha256-rsa,sha256-dsa,sha224-ecdsa,sha224-rsa,sha224-dsa,sha1-ecdsa,sha1-rsa,sha1-dsa.
To not restrict the server's certificate signature algorithm, specify an empty string as the value for this configuration setting, which will cause the signature_algorithms TLS 1.2 extension to not be sent.
The default value is ecdhe_secp256r1,ecdhe_secp384r1,ecdhe_secp521r1.
When using TLS 1.2 and SSLProvider is set to Internal, the values refer to the supported groups for ECC. The following values are supported:
- "ecdhe_secp256r1" (default)
- "ecdhe_secp384r1" (default)
- "ecdhe_secp521r1" (default)
The default value is set to balance common supported groups and the computational resources required to generate key shares. As a result, only some groups are included by default in this configuration setting.
Note: All supported groups can always be used during the handshake even if not listed here, but if a group is used that is not present in this list, it will incur an additional roundtrip and time to generate the key share for that group.
In most cases, this configuration setting does not need to be modified. This should be modified only if there is a specific reason to do so.
The default value is ecdhe_x25519,ecdhe_secp256r1,ecdhe_secp384r1,ffdhe_2048,ffdhe_3072
The values are ordered from most preferred to least preferred. The following values are supported:
- "ecdhe_x25519" (default)
- "ecdhe_x448"
- "ecdhe_secp256r1" (default)
- "ecdhe_secp384r1" (default)
- "ecdhe_secp521r1"
- "ffdhe_2048" (default)
- "ffdhe_3072" (default)
- "ffdhe_4096"
- "ffdhe_6144"
- "ffdhe_8192"
- "ed25519" (default)
- "ed448" (default)
- "ecdsa_secp256r1_sha256" (default)
- "ecdsa_secp384r1_sha384" (default)
- "ecdsa_secp521r1_sha512" (default)
- "rsa_pkcs1_sha256" (default)
- "rsa_pkcs1_sha384" (default)
- "rsa_pkcs1_sha512" (default)
- "rsa_pss_sha256" (default)
- "rsa_pss_sha384" (default)
- "rsa_pss_sha512" (default)
The default value is ecdhe_x25519,ecdhe_x448,ecdhe_secp256r1,ecdhe_secp384r1,ecdhe_secp521r1,ffdhe_2048,ffdhe_3072,ffdhe_4096,ffdhe_6144,ffdhe_8192
The values are ordered from most preferred to least preferred. The following values are supported:
- "ecdhe_x25519" (default)
- "ecdhe_x448" (default)
- "ecdhe_secp256r1" (default)
- "ecdhe_secp384r1" (default)
- "ecdhe_secp521r1" (default)
- "ffdhe_2048" (default)
- "ffdhe_3072" (default)
- "ffdhe_4096" (default)
- "ffdhe_6144" (default)
- "ffdhe_8192" (default)
Trappable Errors (Client Class)
Client Errors
601 | Could not create ephemeral key. |
602 | Invalid certificate. |
603 | Invalid operation. |
604 | Invalid ClientAuth data. |
605 | The errorCode element in Erro message is invalid. |
606 | Invalid index. |
1101 | Protocol error. Received invalid message. |
1102 | Protocol error. Invalid message version. |
1201 | Protocol error. Missing data element. |
1202 | Protocol error. Unrecognized critical extension. |
1301 | Protocol error. Unrecognized transaction Id. |
1302 | Decryption failed. |
HTTP Errors
118 | Firewall error. The error description contains the detailed message. |
143 | Busy executing current method. |
151 | HTTP protocol error. The error message has the server response. |
152 | No server specified in URL. |
153 | Specified URLScheme is invalid. |
155 | Range operation is not supported by server. |
156 | Invalid cookie index (out of range). |
301 | Interrupted. |
302 | Cannot open AttachedFile. |
The class may also return one of the following error codes, which are inherited from other classes.
TCPClient Errors
100 | You cannot change the RemotePort at this time. A connection is in progress. |
101 | You cannot change the RemoteHost (Server) at this time. A connection is in progress. |
102 | The RemoteHost address is invalid (0.0.0.0). |
104 | Already connected. If you want to reconnect, close the current connection first. |
106 | You cannot change the LocalPort at this time. A connection is in progress. |
107 | You cannot change the LocalHost at this time. A connection is in progress. |
112 | You cannot change MaxLineLength at this time. A connection is in progress. |
116 | RemotePort cannot be zero. Please specify a valid service port number. |
117 | You cannot change the UseConnection option while the class is active. |
135 | Operation would block. |
201 | Timeout. |
211 | Action impossible in control's present state. |
212 | Action impossible while not connected. |
213 | Action impossible while listening. |
301 | Timeout. |
302 | Could not open file. |
434 | Unable to convert string to selected CodePage. |
1105 | Already connecting. If you want to reconnect, close the current connection first. |
1117 | You need to connect first. |
1119 | You cannot change the LocalHost at this time. A connection is in progress. |
1120 | Connection dropped by remote host. |
SSL Errors
270 | Cannot load specified security library. |
271 | Cannot open certificate store. |
272 | Cannot find specified certificate. |
273 | Cannot acquire security credentials. |
274 | Cannot find certificate chain. |
275 | Cannot verify certificate chain. |
276 | Error during handshake. |
280 | Error verifying certificate. |
281 | Could not find client certificate. |
282 | Could not find server certificate. |
283 | Error encrypting data. |
284 | Error decrypting data. |
TCP/IP Errors
10004 | [10004] Interrupted system call. |
10009 | [10009] Bad file number. |
10013 | [10013] Access denied. |
10014 | [10014] Bad address. |
10022 | [10022] Invalid argument. |
10024 | [10024] Too many open files. |
10035 | [10035] Operation would block. |
10036 | [10036] Operation now in progress. |
10037 | [10037] Operation already in progress. |
10038 | [10038] Socket operation on nonsocket. |
10039 | [10039] Destination address required. |
10040 | [10040] Message is too long. |
10041 | [10041] Protocol wrong type for socket. |
10042 | [10042] Bad protocol option. |
10043 | [10043] Protocol is not supported. |
10044 | [10044] Socket type is not supported. |
10045 | [10045] Operation is not supported on socket. |
10046 | [10046] Protocol family is not supported. |
10047 | [10047] Address family is not supported by protocol family. |
10048 | [10048] Address already in use. |
10049 | [10049] Cannot assign requested address. |
10050 | [10050] Network is down. |
10051 | [10051] Network is unreachable. |
10052 | [10052] Net dropped connection or reset. |
10053 | [10053] Software caused connection abort. |
10054 | [10054] Connection reset by peer. |
10055 | [10055] No buffer space available. |
10056 | [10056] Socket is already connected. |
10057 | [10057] Socket is not connected. |
10058 | [10058] Cannot send after socket shutdown. |
10059 | [10059] Too many references, cannot splice. |
10060 | [10060] Connection timed out. |
10061 | [10061] Connection refused. |
10062 | [10062] Too many levels of symbolic links. |
10063 | [10063] File name is too long. |
10064 | [10064] Host is down. |
10065 | [10065] No route to host. |
10066 | [10066] Directory is not empty |
10067 | [10067] Too many processes. |
10068 | [10068] Too many users. |
10069 | [10069] Disc Quota Exceeded. |
10070 | [10070] Stale NFS file handle. |
10071 | [10071] Too many levels of remote in path. |
10091 | [10091] Network subsystem is unavailable. |
10092 | [10092] WINSOCK DLL Version out of range. |
10093 | [10093] Winsock is not loaded yet. |
11001 | [11001] Host not found. |
11002 | [11002] Nonauthoritative 'Host not found' (try again or check DNS setup). |
11003 | [11003] Nonrecoverable errors: FORMERR, REFUSED, NOTIMP. |
11004 | [11004] Valid name, no data record (check DNS setup). |