SAMLWriter Component
Properties Methods Events Config Settings Errors
The SAMLWriter component offers SAML message generation functions.
Syntax
TsbxSAMLWriter
Remarks
SAMLWriter provides means of serialization of SAML entities into valid SAML protocol messages. Together with SAMLReader, this class provides fine-grained access to the composition of SAML requests, responses, assertions, and statements. You can use it as part of your SAML client or SAML server implementation for creating individual SAML entities.
SAMLReader and SAMLWriter are independent of SAML server controls that are also included in SecureBlackbox, and are aimed at scenarios that require lower-level access to SAML functionality than that provided by the server controls.
SAMLWriter can create the following kinds of SAML messages:
- AssertionIDRequest
- SubjectQuery
- AuthnQuery
- AttributeQuery
- AuthzDecisionQuery
- AuthnRequest
- ManageNameIDRequest
- LogoutRequest
- NameIDMappingRequest
- ArtifactResolve
- Response
Please find below a quick-and-dirty example of the use of SAMLWriter class for creating a signed AuthnRequest message:
Samlwriter writer = new Samlwriter();
// configuring general message properties
writer.Destination = "http://destination-url.com";
writer.IssueInstant = DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ss.fffZ");
writer.Issuer = "Value=https://issuer-url.com;Format=urn:oasis:names:tc:SAML:2.0:nameid-format:entity;IDType=Issuer";
// configuring general AuthnRequest properties
writer.AuthnRequest.IsPassive = false;
writer.AuthnRequest.UseIsPassive = true;
writer.AuthnRequest.ForceAuthn = true;
writer.AuthnRequest.ProtocolBinding = "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST";
writer.AuthnRequest.AssertionConsumerServiceURL = "https://assertion-consumer-url.com";
writer.AuthnRequest.AttributeConsumingServiceIndex = 1;
writer.AuthnRequest.NameIDPolicyAllowCreate = false;
writer.AuthnRequest.NameIDPolicyFormat = "urn:oasis:names:tc:SAML:2.0:nameid-format:persistent";
writer.AuthnRequest.ConditionsNotBefore = DateTime.UtcNow.ToString("yyyy-MM-ddTHH:mm:ss.fffZ");
writer.AuthnRequest.ConditionsNotOnOrAfter = DateTime.UtcNow.AddMinutes(30).ToString("yyyy-MM-ddTHH:mm:ss.fffZ");
// adjusting request conditions if required
SAMLAssertionCondition cond = new SAMLAssertionCondition();
cond.ConditionType = SAMLConditionTypes.csctOneTimeUse;
writer.AuthnRequestConditions.Add(cond);
// configuring signing properties
Certificate certificate = new Certificate("C:\\Certs\\samlCert.pfx", "password");
writer.Sign = true;
writer.SigningCertificate = certificate;
// creating the SAML entity of the required type
writer.CreateNew((int)SamlwriterOutputTypes.cstyAuthnRequest);
// adjusting low-level signature parameters
writer.Config("SigDigestMethod=http://www.w3.org/2001/04/xmlenc#sha256");
writer.Config("SigMethod=http://www.w3.org/2001/04/xmldsig-more#rsa-sha256");
// signing the request and serializing it to XML
string request = writer.Save();
The above code produces the following AuthnRequest:
<samlp:AuthnRequest
xmlns:saml="urn:oasis:names:tc:SAML:2.0:assertion" ID="53GhrzQ5f89fu214ANAR" Version="2.0"
IssueInstant="2021-12-15T10:39:31Z" Destination="http://destination-url.com" IsPassive="false"
ProtocolBinding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST"
AssertionConsumerServiceURL="https://assertion-consumer-url.com" AttributeConsumingServiceIndex="1"
xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol">
<saml:Issuer Format="urn:oasis:names:tc:SAML:2.0:nameid-format:entity">https://issuer-url.com</saml:Issuer>
<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<ds:SignedInfo>
<ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
<ds:SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"/>
<ds:Reference URI="#53GhrzQ5f89fu214ANAR">
<ds:Transforms>
<ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
<ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
</ds:Transforms>
<ds:DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256"/><ds:DigestValue>+xhhgXtwYN0/r9h7WAwg=</ds:DigestValue>
</ds:Reference>
</ds:SignedInfo>
<ds:SignatureValue>
jfYeIq/z8D1tJZYbVqDMoqKpdrfGMj8/zI7gbUsJbECAr00cN34md2QG0mo4cOx7pny+5
Tht7tUzqENHqcZdmlOcZc2JcJqokVxIcLEluFiWKlNjpexkXFQKzOC1peRfTZm8SQTqtP
Cz8IknLUc6Scfml29PHmks1PxjJDteGb/+FggsZRTGZC3a05nvH3ayvHukPeHuHssx5dX
nj0quT8salR6fdx6lAJo/AnDHzcfBNyxAMn+ebk5VOOgVD1L3PayvXib/maj8aVI2I5UT
o4vmfybTWKzeS8DX9We7UV+4Xowwe647t1A912xLVub/e23A18Yf1V0PXC87kttTkA==
</ds:SignatureValue>
<ds:KeyInfo>
<ds:X509Data><ds:X509Certificate>
MIIEKDCCAxCgAwIBAgIFYA3A3gIwDQYJKoZIhvcNAQELBQAwfjELMAkGA1UEBhMCVVMxC
zAJBgNVBAgTAk5DMRQwEgYDVQQHEwtDaGFwZWwgSGlsbDEiMCAGCSqGSIb3DQEJARMTc2
FsZXNAbnNvZnR3YXJlLmNvbTEoMCYGA1UEAxMfU2VjdXJlQmxhY2tib3ggRGVtbyBDZXJ
0aWZpY2F0ZTAeFw0xNzA5MDEwMDAwMDBaFw0yMjA5MDEwMDAwMDBaMH4xCzAJBgNVBAYT
AlVTMQswCQYDVQQIEwJOQzEUMBIGA1UEBxMLQ2hhcGVsIEhpbGwxIjAgBgkqhkiG9w0BC
QETE3NhbGVzQG5zb2Z0d2FyZS5jb20xKDAmBgNVBAMTH1NlY3VyZUJsYWNrYm94IERlbW
8gQ2VydGlmaWNhdGUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCfAVIcq9o
eoIbw56LsPjxWsX3YGkqasBQzgQymhfcDZeSvFKFis8iqArGLTUUWOaImO5t2UmjIa+4n
YP39hb9Z1r0CMy53p83oYbbZZ7qMeji0pMAufJHqKCN8t2HNWf2HE8S9UOU7R/UHdrSAN
JitBKV9lSG9f450yWoGNwt35ZCsOp0zqtCgvkEvteGsz01R5DDjOccs3QNu25K/Sf27KP
CYabS6A1ehYNY/G32qoKNJhu3DN4bWje57gBWi9WSfQ3tZUOV5q2ozaNJA78Wl4fXC6RB
CaBh0GOwXeyZoH13LJdn+lqlCSMz024ImG4yFQEENbWvE9Elku8RYTn73AgMBAAGjgaww
gakwHwYDVR0jBBgwFoAUmt/L7GI1SH36Sp8EUBxTwuzSgqMwHQYDVR0OBBYEFJrfy+xiN
Uh9+kqfBFAcU8Ls0oKjMA8GA1UdEwEB/wQFMAMBAf8wDwYDVR0PAQH/BAUDAwDuADBFBg
NVHSUEPjA8BggrBgEFBQcDAQYIKwYBBQUHAwIGCCsGAQUFBwMDBggrBgEFBQcDBAYIKwY
BBQUHAwgGCCsGAQUFBwMJMA0GCSqGSIb3DQEBCwUAA4IBAQBovHBbMsW/k/5iuLQQqsYS
ng5X2iy1W+5BRb1hz0MGnHGLqJWy1ty5+bTo6g/zvT65dXIPIexLkInEenYSy75Lthr6a
ewUcvwfl1TYXjWlMD5Nm5pM9As71+XsGSdYGXoKohbEzbT6RDByjwR+yxtatqko7e1Eg6
InNJRTRt7al/63FSPEgSCqOX6asDVDNZ83db0dOcoeaPEiDz3liE3+tYHtKXj5/qwTtYd
aqBZxdJfuCKZveEFe1DO3/ayDvIvG9Eme+rEjntErF+Cw9a8ukesvDuT49cRE9oTs3O7f
6LUbhCv5zJN+dTFr75NSdWdp4yvn3nK3i2udeMnTWK0U
</ds:X509Certificate></ds:X509Data>
</ds:KeyInfo>
</ds:Signature>
<samlp:NameIDPolicy Format="urn:oasis:names:tc:SAML:2.0:nameid-format:persistent"/>
<saml:Conditions NotBefore="2021-12-15T10:39:31Z" NotOnOrAfter="2021-12-15T11:09:31Z"><saml:OneTimeUse/></saml:Conditions>
</samlp:AuthnRequest>
Note that you need to set the signing certificate before calling CreateNew.
Property List
The following is the full list of the properties of the component with short descriptions. Click on the links for further details.
AddXMLHeader | Controls the inclusion of an XML header in the message. |
Artifact | Provides access to the Artifact element of the message. |
ArtifactResolveQuery | Contains the artifact resolve query. |
AssertionAttributes | Contains a list of assertion attributes. |
AssertionConditions | Contains a list of assertion conditions. |
AssertionCount | Returns the number of assertions in the message. |
AssertionIDRequest | Contains the properties of AssertionIDRequest element. |
AssertionInfo | Contains assertion information. |
AssertionIssuer | Specifies the assertion issuer. |
AssertionStatements | Contains assertion statements. |
AssertionSubjectConfirmations | Provides access to assertion SubjectConfirmations list. |
AssertionSubjectID | Specifies the assertion subject ID. |
AttrQueryAttributes | Contains a list of attribute query attributes. |
AuthnQuery | Provides access to the AuthnQuery SAML element. |
AuthnRequest | Publishes the properties of AuthnRequest element. |
AuthnRequestConditions | Contains a list of AuthnRequest conditions. |
AuthnRequestScopingIDPList | Provides access to the list of scoping IDP eleements. |
AuthzDecisionQuery | Provides access to AuthzDecisionQuery element. |
Binding | Specifies the type of the binding to use. |
Consent | Contains the Consent parameter of the request. |
Destination | Contains the Destination parameter of the SAML object. |
EncryptionCertificate | Sets the encryption certificate. |
FIPSMode | Reserved. |
ID | The ID of the request. |
InResponseTo | Contains the InResponseTo property of the SAML request. |
IssueInstant | Contains request issuance timestamp. |
Issuer | Sets the issuer of the message. |
LogoutRequest | Contains the properties of SAML LogoutRequest element. |
ManageNameIDRequest | Provides access to ManageNameIDRequest element. |
NameIDMappingRequest | Publishes the properties of NameIDMappingRequest entity. |
OutputType | Returns the SAML type of message being created. |
POSTBinding | Exposes the POST binding properties. |
Profile | Specifies a pre-defined profile to apply when creating the signature. |
RedirectBinding | Publishes the redirect binding settings. |
RedirectBindingCertificate | Contains a certificate to sign the redirect binding. |
Response | Provides access to the SAML response object properties. |
SigCanonicalizationMethod | The canonicalization method to use in the signature. |
SigDigestMethod | The digest method to use. |
SigMethod | The signature method to use. |
Sign | Specifies whether the created SAML message should be signed. |
SigningCertificate | The certificate to be used for signing. |
SigningChain | The signing certificate chain. |
SubjectConfirmations | Provides access to the list of subject confirmation elements. |
SubjectID | Sets the subject of the message. |
Version | Specifies the protocol version of the SAML message. |
Method List
The following is the full list of the methods of the component with short descriptions. Click on the links for further details.
AddAdviceAssertion | Adds an advice assertion to the message. |
AddAssertion | Adds assertion to a SAML message. |
ClearAssertion | Resets the contents of all assertion-related properties. |
CompareIDs | Compares two SAML IDs. |
Config | Sets or retrieves a configuration setting. |
CreateNew | Creates a new SAML message with the given type. |
DoAction | Performs an additional action. |
GetIDProp | Returns an element of the SAML ID. |
RemoveAdvice | Removes an advice from an assertion. |
RemoveAdviceAssertion | Removes an advice from an assertion. |
RemoveAllAssertions | Removes all assertions currently configured in the message. |
RemoveAssertion | Removes an assertion from the message. |
Save | Saves the configured message to a string. |
SaveBytes | Saves the configured message to a byte array. |
SaveFile | Saves the configured message to a file. |
SaveStream | Saves the configured message to a stream. |
Event List
The following is the full list of the events fired by the component with short descriptions. Click on the links for further details.
Error | Fires to report an error condition. |
Notification | This event notifies the application about an underlying control flow event. |
Config Settings
The following is a list of config settings for the component with short descriptions. Click on the links for further details.
IgnoreSystemTrust | Whether trusted Windows Certificate Stores should be treated as trusted. |
SigAfterIssuer | Specifies whether to insert the signature after the issuer tag in the SAML document. |
TolerateMinorChainIssues | Whether to tolerate minor chain issues. |
UseMicrosoftCTL | Enables or disables the automatic use of the Microsoft online certificate trust list. |
UseSystemCertificates | Enables or disables the use of the system certificates. |
CheckKeyIntegrityBeforeUse | Enables or disable private key integrity check before use. |
CookieCaching | Specifies whether a cookie cache should be used for HTTP(S) transports. |
Cookies | Gets or sets local cookies for the component. |
DefDeriveKeyIterations | Specifies the default key derivation algorithm iteration count. |
EnableClientSideSSLFFDHE | Enables or disables finite field DHE key exchange support in TLS clients. |
GlobalCookies | Gets or sets global cookies for all the HTTP transports. |
HttpUserAgent | Specifies the user agent name to be used by all HTTP clients. |
LogDestination | Specifies the debug log destination. |
LogDetails | Specifies the debug log details to dump. |
LogFile | Specifies the debug log filename. |
LogFilters | Specifies the debug log filters. |
LogFlushMode | Specifies the log flush mode. |
LogLevel | Specifies the debug log level. |
LogMaxEventCount | Specifies the maximum number of events to cache before further action is taken. |
LogRotationMode | Specifies the log rotation mode. |
MaxASN1BufferLength | Specifies the maximal allowed length for ASN.1 primitive tag data. |
MaxASN1TreeDepth | Specifies the maximal depth for processed ASN.1 trees. |
OCSPHashAlgorithm | Specifies the hash algorithm to be used to identify certificates in OCSP requests. |
StaticDNS | Specifies whether static DNS rules should be used. |
StaticIPAddress[domain] | Gets or sets an IP address for the specified domain name. |
StaticIPAddresses | Gets or sets all the static DNS rules. |
Tag | Allows to store any custom data. |
TLSSessionGroup | Specifies the group name of TLS sessions to be used for session resumption. |
TLSSessionLifetime | Specifies lifetime in seconds of the cached TLS session. |
TLSSessionPurgeInterval | Specifies how often the session cache should remove the expired TLS sessions. |
UseOwnDNSResolver | Specifies whether the client components should use own DNS resolver. |
UseSharedSystemStorages | Specifies whether the validation engine should use a global per-process copy of the system certificate stores. |
UseSystemOAEPAndPSS | Enforces or disables the use of system-driven RSA OAEP and PSS computations. |
UseSystemRandom | Enables or disables the use of the OS PRNG. |
AddXMLHeader Property (SAMLWriter Component)
Controls the inclusion of an XML header in the message.
Syntax
property AddXMLHeader: Boolean read get_AddXMLHeader write set_AddXMLHeader;
Default Value
false
Remarks
Use this property to enable or disable inclusion of the XML header in the SAML message.
This property is not available at design time.
Artifact Property (SAMLWriter Component)
Provides access to the Artifact element of the message.
Syntax
property Artifact: TsbxSAMLArtifact read get_Artifact write set_Artifact;
Remarks
Use this property to access and adjust the Artifact element of the created SAML message.
This property is not available at design time.
Please refer to the SAMLArtifact type for a complete list of fields.ArtifactResolveQuery Property (SAMLWriter Component)
Contains the artifact resolve query.
Syntax
property ArtifactResolveQuery: String read get_ArtifactResolveQuery write set_ArtifactResolveQuery;
Default Value
''
Remarks
Use this property to read or set the artifact resolve query.
This property is not available at design time.
AssertionAttributes Property (SAMLWriter Component)
Contains a list of assertion attributes.
Syntax
property AssertionAttributes: TsbxSAMLAttributeList read get_AssertionAttributes write set_AssertionAttributes;
Remarks
Use this property to configure the list of assertion attributes for the new SAML message.
This property is not available at design time.
Please refer to the SAMLAttribute type for a complete list of fields.AssertionConditions Property (SAMLWriter Component)
Contains a list of assertion conditions.
Syntax
property AssertionConditions: TsbxSAMLAssertionConditionList read get_AssertionConditions write set_AssertionConditions;
Remarks
Use this property to tune-up assertion conditions to be included in the message.
This property is not available at design time.
Please refer to the SAMLAssertionCondition type for a complete list of fields.AssertionCount Property (SAMLWriter Component)
Returns the number of assertions in the message.
Syntax
property AssertionCount: Integer read get_AssertionCount;
Default Value
0
Remarks
This property returns the total number of assertions currently defined in the SAML message.
This property is read-only and not available at design time.
AssertionIDRequest Property (SAMLWriter Component)
Contains the properties of AssertionIDRequest element.
Syntax
property AssertionIDRequest: TsbxSAMLAssertionIDRequest read get_AssertionIDRequest;
Remarks
Use this property to access the properties of AssertionIDRequest element.
This property is read-only and not available at design time.
Please refer to the SAMLAssertionIDRequest type for a complete list of fields.AssertionInfo Property (SAMLWriter Component)
Contains assertion information.
Syntax
property AssertionInfo: TsbxSAMLAssertionInfo read get_AssertionInfo;
Remarks
Use this property to access and/or modify the SAML assertion information.
This property is read-only and not available at design time.
Please refer to the SAMLAssertionInfo type for a complete list of fields.AssertionIssuer Property (SAMLWriter Component)
Specifies the assertion issuer.
Syntax
property AssertionIssuer: String read get_AssertionIssuer write set_AssertionIssuer;
Default Value
''
Remarks
Use this property to provide the assertion issuer ID.
This property is not available at design time.
AssertionStatements Property (SAMLWriter Component)
Contains assertion statements.
Syntax
property AssertionStatements: TsbxSAMLAssertionStatementList read get_AssertionStatements write set_AssertionStatements;
Remarks
Use this property to access or set the assertion statements.
This property is not available at design time.
Please refer to the SAMLAssertionStatement type for a complete list of fields.AssertionSubjectConfirmations Property (SAMLWriter Component)
Provides access to assertion SubjectConfirmations list.
Syntax
property AssertionSubjectConfirmations: TsbxSAMLSubjectConfirmationList read get_AssertionSubjectConfirmations write set_AssertionSubjectConfirmations;
Remarks
Use this property to access the list of assertions SubjectConfirmation elements.
This property is not available at design time.
Please refer to the SAMLSubjectConfirmation type for a complete list of fields.AssertionSubjectID Property (SAMLWriter Component)
Specifies the assertion subject ID.
Syntax
property AssertionSubjectID: String read get_AssertionSubjectID write set_AssertionSubjectID;
Default Value
''
Remarks
Use this property to provide the assertion's subject SAML ID.
This property is not available at design time.
AttrQueryAttributes Property (SAMLWriter Component)
Contains a list of attribute query attributes.
Syntax
property AttrQueryAttributes: TsbxSAMLAttributeList read get_AttrQueryAttributes write set_AttrQueryAttributes;
Remarks
Use this property to set up a list of attribute query attributes.
This property is not available at design time.
Please refer to the SAMLAttribute type for a complete list of fields.AuthnQuery Property (SAMLWriter Component)
Provides access to the AuthnQuery SAML element.
Syntax
property AuthnQuery: TsbxSAMLAuthnQuery read get_AuthnQuery;
Remarks
Use this property to access the details of the authentication query element.
This property is read-only and not available at design time.
Please refer to the SAMLAuthnQuery type for a complete list of fields.AuthnRequest Property (SAMLWriter Component)
Publishes the properties of AuthnRequest element.
Syntax
property AuthnRequest: TsbxSAMLAuthnRequest read get_AuthnRequest;
Remarks
Use this property to access the details of the authentication request element.
This property is read-only and not available at design time.
Please refer to the SAMLAuthnRequest type for a complete list of fields.AuthnRequestConditions Property (SAMLWriter Component)
Contains a list of AuthnRequest conditions.
Syntax
property AuthnRequestConditions: TsbxSAMLAssertionConditionList read get_AuthnRequestConditions write set_AuthnRequestConditions;
Remarks
Use this property to set up the conditions of the AuthnRequest element.
This property is not available at design time.
Please refer to the SAMLAssertionCondition type for a complete list of fields.AuthnRequestScopingIDPList Property (SAMLWriter Component)
Provides access to the list of scoping IDP eleements.
Syntax
property AuthnRequestScopingIDPList: TsbxSAMLIDPEntryList read get_AuthnRequestScopingIDPList write set_AuthnRequestScopingIDPList;
Remarks
Use this property to set up the collection of scoping IDP entry list for the prepared SAML request.
This property is not available at design time.
Please refer to the SAMLIDPEntry type for a complete list of fields.AuthzDecisionQuery Property (SAMLWriter Component)
Provides access to AuthzDecisionQuery element.
Syntax
property AuthzDecisionQuery: TsbxSAMLAuthzDecisionQuery read get_AuthzDecisionQuery;
Remarks
Use this property to configure the details of Authorization Decision Query element.
This property is read-only and not available at design time.
Please refer to the SAMLAuthzDecisionQuery type for a complete list of fields.Binding Property (SAMLWriter Component)
Specifies the type of the binding to use.
Syntax
property Binding: TsbxSAMLBindingTypes read get_Binding write set_Binding;
TsbxSAMLBindingTypes = ( csbtNone, csbtSOAP, csbtPAOS, csbtRedirect, csbtPOST, csbtArtifact );
Default Value
csbtNone
Remarks
Use this property to specify the binding type to use with the request.
Consent Property (SAMLWriter Component)
Contains the Consent parameter of the request.
Syntax
property Consent: String read get_Consent write set_Consent;
Default Value
''
Remarks
Use this property to specify the Consent parameter of the SAML entity.
This property is not available at design time.
Destination Property (SAMLWriter Component)
Contains the Destination parameter of the SAML object.
Syntax
property Destination: String read get_Destination write set_Destination;
Default Value
''
Remarks
Use this property to set the Destination parameter of the created SAML object.
This property is not available at design time.
EncryptionCertificate Property (SAMLWriter Component)
Sets the encryption certificate.
Syntax
property EncryptionCertificate: TsbxCertificate read get_EncryptionCertificate write set_EncryptionCertificate;
Remarks
Use this property to specify the encryption certificate for encrypted requests.
This property is not available at design time.
Please refer to the Certificate type for a complete list of fields.FIPSMode Property (SAMLWriter Component)
Reserved.
Syntax
property FIPSMode: Boolean read get_FIPSMode write set_FIPSMode;
Default Value
false
Remarks
This property is reserved for future use.
ID Property (SAMLWriter Component)
The ID of the request.
Syntax
property ID: String read get_ID write set_ID;
Default Value
''
Remarks
Use this property to specify the ID of the request.
This property is not available at design time.
InResponseTo Property (SAMLWriter Component)
Contains the InResponseTo property of the SAML request.
Syntax
property InResponseTo: String read get_InResponseTo write set_InResponseTo;
Default Value
''
Remarks
Use this property to specify the ID of the message in response to which the current entity is provided.
This property is not available at design time.
IssueInstant Property (SAMLWriter Component)
Contains request issuance timestamp.
Syntax
property IssueInstant: String read get_IssueInstant write set_IssueInstant;
Default Value
''
Remarks
Set this property to specify the time moment of the request formation. Leave it empty to use the current system time.
This property is not available at design time.
Issuer Property (SAMLWriter Component)
Sets the issuer of the message.
Syntax
property Issuer: String read get_Issuer write set_Issuer;
Default Value
''
Remarks
Set this property to include the SAML ID of the issuer of the SAML message. A typical SAML ID is a string of semicolon-separated elements of one or more of the following elements:
- Format
- NameQualifier
- Value
- IDType
- SPNameQualifier
- SPProvidedID
writer.Issuer = "Value=https://saml.entity.org/resource;Format=urn:oasis:names:tc:SAML:2.0:nameid-format:entity;IDType=Issuer";
This property is not available at design time.
LogoutRequest Property (SAMLWriter Component)
Contains the properties of SAML LogoutRequest element.
Syntax
property LogoutRequest: TsbxSAMLLogoutRequest read get_LogoutRequest;
Remarks
Use this property to access the settings of the LogoutRequest element.
This property is read-only and not available at design time.
Please refer to the SAMLLogoutRequest type for a complete list of fields.ManageNameIDRequest Property (SAMLWriter Component)
Provides access to ManageNameIDRequest element.
Syntax
property ManageNameIDRequest: TsbxSAMLManageNameIDRequest read get_ManageNameIDRequest;
Remarks
Use this property to access the details of ManageNameIDRequest element.
This property is read-only and not available at design time.
Please refer to the SAMLManageNameIDRequest type for a complete list of fields.NameIDMappingRequest Property (SAMLWriter Component)
Publishes the properties of NameIDMappingRequest entity.
Syntax
property NameIDMappingRequest: TsbxSAMLNameIDMappingRequest read get_NameIDMappingRequest;
Remarks
Use this property to access the details of SAML NameIDMappingRequest entity.
This property is read-only and not available at design time.
Please refer to the SAMLNameIDMappingRequest type for a complete list of fields.OutputType Property (SAMLWriter Component)
Returns the SAML type of message being created.
Syntax
property OutputType: TsbxSAMLContentTypes read get_OutputType;
TsbxSAMLContentTypes = ( cstyNone, cstyAssertionIDRequest, cstySubjectQuery, cstyAuthnQuery, cstyAttributeQuery, cstyAuthzDecisionQuery, cstyAuthnRequest, cstyManageNameIDRequest, cstyLogoutRequest, cstyNameIDMappingRequest, cstyArtifactResolve, cstyResponse );
Default Value
cstyNone
Remarks
Use this property to check the type of SAML message being created. This is the same value that was passed to CreateNew call.
Depending on the assigned type, use properties of component to tune up the parameters of the chosen message type. For example, if setting OutputType to cstyAuthnQuery, use AuthnQuery property to adjust context class references or comparison settings.
This property is read-only and not available at design time.
POSTBinding Property (SAMLWriter Component)
Exposes the POST binding properties.
Syntax
property POSTBinding: TsbxSAMLPOSTBinding read get_POSTBinding;
Remarks
Use this property to access the POST binding settings.
This property is read-only and not available at design time.
Please refer to the SAMLPOSTBinding type for a complete list of fields.Profile Property (SAMLWriter Component)
Specifies a pre-defined profile to apply when creating the signature.
Syntax
property Profile: String read get_Profile write set_Profile;
Default Value
''
Remarks
Advanced signatures come in many variants, which are often defined by parties that needs to process them or by local standards. SecureBlackbox profiles are sets of pre-defined configurations which correspond to particular signature variants. By specifying a profile, you are pre-configuring the component to make it produce the signature that matches the configuration corresponding to that profile.
RedirectBinding Property (SAMLWriter Component)
Publishes the redirect binding settings.
Syntax
property RedirectBinding: TsbxSAMLRedirectBinding read get_RedirectBinding;
Remarks
Use this property to access the redirect binding settings.
This property is read-only and not available at design time.
Please refer to the SAMLRedirectBinding type for a complete list of fields.RedirectBindingCertificate Property (SAMLWriter Component)
Contains a certificate to sign the redirect binding.
Syntax
property RedirectBindingCertificate: TsbxCertificate read get_RedirectBindingCertificate write set_RedirectBindingCertificate;
Remarks
Use this property to set the signing certificate for the redirect binding object. This is different to SigningCertificate and is used to sign the content of the redirect binding.
This property is not available at design time.
Please refer to the Certificate type for a complete list of fields.Response Property (SAMLWriter Component)
Provides access to the SAML response object properties.
Syntax
property Response: TsbxSAMLResponse read get_Response;
Remarks
Use this property to access the parameters of a SAML response object.
This property is read-only and not available at design time.
Please refer to the SAMLResponse type for a complete list of fields.SigCanonicalizationMethod Property (SAMLWriter Component)
The canonicalization method to use in the signature.
Syntax
property SigCanonicalizationMethod: String read get_SigCanonicalizationMethod write set_SigCanonicalizationMethod;
Default Value
''
Remarks
The URI of the canonicalization method to use in the signature (e.g. http://www.w3.org/TR/xml-exc-c14n/)
SigDigestMethod Property (SAMLWriter Component)
The digest method to use.
Syntax
property SigDigestMethod: String read get_SigDigestMethod write set_SigDigestMethod;
Default Value
''
Remarks
The URI of the digest method to use for signing, as defined in XMLDSIG or XMLENC: http://www.w3.org/2000/09/xmldsig#sha256.
SigMethod Property (SAMLWriter Component)
The signature method to use.
Syntax
property SigMethod: String read get_SigMethod write set_SigMethod;
Default Value
''
Remarks
The URI specifying the signature method to use for signing, for example http://www.w3.org/2001/04/xmldsig-more#rsa-sha256.
Sign Property (SAMLWriter Component)
Specifies whether the created SAML message should be signed.
Syntax
property Sign: Boolean read get_Sign write set_Sign;
Default Value
false
Remarks
Set this property to true to indicate that you want the created message to be signed.
This property is not available at design time.
SigningCertificate Property (SAMLWriter Component)
The certificate to be used for signing.
Syntax
property SigningCertificate: TsbxCertificate read get_SigningCertificate write set_SigningCertificate;
Remarks
Use this property to specify the certificate that shall be used for signing the data. Note that this certificate should have a private key associated with it. Use SigningChain to supply the rest of the certificate chain for inclusion into the signature.
This property is not available at design time.
Please refer to the Certificate type for a complete list of fields.SigningChain Property (SAMLWriter Component)
The signing certificate chain.
Syntax
property SigningChain: TsbxCertificateList read get_SigningChain write set_SigningChain;
Remarks
Use this property to provide the chain for the signing certificate. Use the SigningCertificate property, if it is available, to provide the signing certificate itself.
This property is not available at design time.
Please refer to the Certificate type for a complete list of fields.SubjectConfirmations Property (SAMLWriter Component)
Provides access to the list of subject confirmation elements.
Syntax
property SubjectConfirmations: TsbxSAMLSubjectConfirmationList read get_SubjectConfirmations write set_SubjectConfirmations;
Remarks
Use this property to access the list of subject confirmation elements.
This property is not available at design time.
Please refer to the SAMLSubjectConfirmation type for a complete list of fields.SubjectID Property (SAMLWriter Component)
Sets the subject of the message.
Syntax
property SubjectID: String read get_SubjectID write set_SubjectID;
Default Value
''
Remarks
Use this property to set the SAML ID of the message subject.
This property is not available at design time.
Version Property (SAMLWriter Component)
Specifies the protocol version of the SAML message.
Syntax
property Version: String read get_Version write set_Version;
Default Value
'2.0'
Remarks
Use this property to change the SAML version that the message complies to. This is set to 2.0 by default, and rarely needs to change.
This property is not available at design time.
AddAdviceAssertion Method (SAMLWriter Component)
Adds an advice assertion to the message.
Syntax
function AddAdviceAssertion(AssertionIndex: Integer): Integer;
Remarks
Use this method to add an advice assertion to a SAML assertion message. Provide the index of the assertion via AssertionIndex parameter.
This method returns the index of the newly added advice assertion in the list.
AddAssertion Method (SAMLWriter Component)
Adds assertion to a SAML message.
Syntax
function AddAssertion(): Integer;
Remarks
Use this method to add an assertion to the SAML message being created. The assertion details to add are taken from the components AssertionXXX properties, such as AssertionInfo AssertionStatements, or AssertionAttributes.
The method returns the index of the new assertion in the list.
ClearAssertion Method (SAMLWriter Component)
Resets the contents of all assertion-related properties.
Syntax
procedure ClearAssertion();
Remarks
Use this method to clear the contents of all assertion-related properties, such as AssertionAttributes, to clean up the assertion settings when preparing the component for adding a new assertion.
CompareIDs Method (SAMLWriter Component)
Compares two SAML IDs.
Syntax
function CompareIDs(ID1: String; ID2: String): Boolean;
Remarks
This utility method compares two SAML identifiers for equality.
Config Method (SAMLWriter Component)
Sets or retrieves a configuration setting.
Syntax
function Config(ConfigurationString: String): String;
Remarks
Config is a generic method available in every component. It is used to set and retrieve configuration settings for the component.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the component, 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.
CreateNew Method (SAMLWriter Component)
Creates a new SAML message with the given type.
Syntax
procedure CreateNew(OutputType: Integer);
Remarks
Use this method to create a new SAML message with the specified content type. The following values are supported:
- cstyNone (0)
- cstyAssertionIDRequest (1)
- cstySubjectQuery (2)
- cstyAuthnQuery (3)
- cstyAttributeQuery (4)
- cstyAuthzDecisionQuery (5)
- cstyAuthnRequest (6)
- cstyManageNameIDRequest (7)
- cstyLogoutRequest (8)
- cstyNameIDMappingRequest (9)
- cstyArtifactResolve (10)
- cstyResponse (11)
DoAction Method (SAMLWriter Component)
Performs an additional action.
Syntax
function DoAction(ActionID: String; ActionParams: String): String;
Remarks
DoAction is a generic method available in every component. It is used to perform an additional action introduced after the product major release. The list of actions is not fixed, and may be flexibly extended over time.
The unique identifier (case insensitive) of the action is provided in the ActionID parameter.
ActionParams contains the value of a single parameter, or a list of multiple parameters for the action in the form of PARAM1=VALUE1;PARAM2=VALUE2;....
GetIDProp Method (SAMLWriter Component)
Returns an element of the SAML ID.
Syntax
function GetIDProp(ID: String; PropName: String): String;
Remarks
This is a utility method that simplifies retrieval of a specific property within a SAML ID. Pass the name of the ID property to the PropName parameter, and the ID to the ID parameter.
The following ID properties are supported:
- Format
- NameQualifier
- IDType
- SPNameQualifier
- SPProvidedID
- Value
RemoveAdvice Method (SAMLWriter Component)
Removes an advice from an assertion.
Syntax
procedure RemoveAdvice(AssertionIndex: Integer);
Remarks
Use this method to remove an advice from an assertion. Pass the assertion index via the AssertionIndex parameter.
RemoveAdviceAssertion Method (SAMLWriter Component)
Removes an advice from an assertion.
Syntax
procedure RemoveAdviceAssertion(AssertionIndex: Integer; AdviceAssertionIndex: Integer);
Remarks
Use this method to remove an advice assertion from an assertion.
RemoveAllAssertions Method (SAMLWriter Component)
Removes all assertions currently configured in the message.
Syntax
procedure RemoveAllAssertions();
Remarks
Use this message to remove all assertions currently set up in the SAML message.
RemoveAssertion Method (SAMLWriter Component)
Removes an assertion from the message.
Syntax
procedure RemoveAssertion(AssertionIndex: Integer);
Remarks
Use this message to remove an assertion from a SAML message. Pass the assertion index as a parameter.
Save Method (SAMLWriter Component)
Saves the configured message to a string.
Syntax
function Save(): String;
Remarks
Use this method to save the created SAML message to a string.
SaveBytes Method (SAMLWriter Component)
Saves the configured message to a byte array.
Syntax
function SaveBytes(): TBytes;
Remarks
Use this method to save the formed SAML message to a byte array.
SaveFile Method (SAMLWriter Component)
Saves the configured message to a file.
Syntax
procedure SaveFile(FileName: String);
Remarks
Use this method to save the created SAML message to a file.
SaveStream Method (SAMLWriter Component)
Saves the configured message to a stream.
Syntax
procedure SaveStream(OutStream: TStream);
Remarks
Use this method to save the prepared SAML message to a stream.
Error Event (SAMLWriter Component)
Fires to report an error condition.
Syntax
type TErrorEvent = procedure ( Sender: TObject; ErrorCode: Integer; const Description: String ) of Object;
property OnError: TErrorEvent read FOnError write FOnError;
Remarks
Subscribe to this event to be notified about any error conditions occurring during the component's work. ErrorCode and Description provide the details of the error.
Notification Event (SAMLWriter Component)
This event notifies the application about an underlying control flow event.
Syntax
type TNotificationEvent = procedure ( Sender: TObject; const EventID: String; const EventParam: String ) of Object;
property OnNotification: TNotificationEvent read FOnNotification write FOnNotification;
Remarks
The component fires this event to let the application know about some event, occurrence, or milestone in the component. For example, it may fire to report completion of the document processing. The list of events being reported is not fixed, and may be flexibly extended over time.
The unique identifier of the event is provided in the EventID parameter. EventParam contains any parameters accompanying the occurrence. Depending on the type of the component, the exact action it is performing, or the document being processed, one or both may be omitted.
Certificate Type
Provides details of an individual X.509 certificate.
Remarks
This type provides access to X.509 certificate details.
Fields
Bytes
TBytes (read-only)
Default Value: ""
Returns the raw certificate data in DER format.
CA
Boolean
Default Value: False
Indicates whether the certificate has a CA capability (a setting in the BasicConstraints extension).
CAKeyID
TBytes (read-only)
Default Value: ""
A unique identifier (fingerprint) of the CA certificate's private key.
Authority Key Identifier is a (non-critical) X.509 certificate extension which allows the identification of certificates produced by the same issuer, but with different public keys.
CRLDistributionPoints
String
Default Value: ""
Locations of the CRL (Certificate Revocation List) distribution points used to check this certificate's validity.
Curve
String
Default Value: ""
Specifies the elliptic curve of the EC public key.
SB_EC_SECP112R1 | SECP112R1 | |
SB_EC_SECP112R2 | SECP112R2 | |
SB_EC_SECP128R1 | SECP128R1 | |
SB_EC_SECP128R2 | SECP128R2 | |
SB_EC_SECP160K1 | SECP160K1 | |
SB_EC_SECP160R1 | SECP160R1 | |
SB_EC_SECP160R2 | SECP160R2 | |
SB_EC_SECP192K1 | SECP192K1 | |
SB_EC_SECP192R1 | SECP192R1 | |
SB_EC_SECP224K1 | SECP224K1 | |
SB_EC_SECP224R1 | SECP224R1 | |
SB_EC_SECP256K1 | SECP256K1 | |
SB_EC_SECP256R1 | SECP256R1 | |
SB_EC_SECP384R1 | SECP384R1 | |
SB_EC_SECP521R1 | SECP521R1 | |
SB_EC_SECT113R1 | SECT113R1 | |
SB_EC_SECT113R2 | SECT113R2 | |
SB_EC_SECT131R1 | SECT131R1 | |
SB_EC_SECT131R2 | SECT131R2 | |
SB_EC_SECT163K1 | SECT163K1 | |
SB_EC_SECT163R1 | SECT163R1 | |
SB_EC_SECT163R2 | SECT163R2 | |
SB_EC_SECT193R1 | SECT193R1 | |
SB_EC_SECT193R2 | SECT193R2 | |
SB_EC_SECT233K1 | SECT233K1 | |
SB_EC_SECT233R1 | SECT233R1 | |
SB_EC_SECT239K1 | SECT239K1 | |
SB_EC_SECT283K1 | SECT283K1 | |
SB_EC_SECT283R1 | SECT283R1 | |
SB_EC_SECT409K1 | SECT409K1 | |
SB_EC_SECT409R1 | SECT409R1 | |
SB_EC_SECT571K1 | SECT571K1 | |
SB_EC_SECT571R1 | SECT571R1 | |
SB_EC_PRIME192V1 | PRIME192V1 | |
SB_EC_PRIME192V2 | PRIME192V2 | |
SB_EC_PRIME192V3 | PRIME192V3 | |
SB_EC_PRIME239V1 | PRIME239V1 | |
SB_EC_PRIME239V2 | PRIME239V2 | |
SB_EC_PRIME239V3 | PRIME239V3 | |
SB_EC_PRIME256V1 | PRIME256V1 | |
SB_EC_C2PNB163V1 | C2PNB163V1 | |
SB_EC_C2PNB163V2 | C2PNB163V2 | |
SB_EC_C2PNB163V3 | C2PNB163V3 | |
SB_EC_C2PNB176W1 | C2PNB176W1 | |
SB_EC_C2TNB191V1 | C2TNB191V1 | |
SB_EC_C2TNB191V2 | C2TNB191V2 | |
SB_EC_C2TNB191V3 | C2TNB191V3 | |
SB_EC_C2ONB191V4 | C2ONB191V4 | |
SB_EC_C2ONB191V5 | C2ONB191V5 | |
SB_EC_C2PNB208W1 | C2PNB208W1 | |
SB_EC_C2TNB239V1 | C2TNB239V1 | |
SB_EC_C2TNB239V2 | C2TNB239V2 | |
SB_EC_C2TNB239V3 | C2TNB239V3 | |
SB_EC_C2ONB239V4 | C2ONB239V4 | |
SB_EC_C2ONB239V5 | C2ONB239V5 | |
SB_EC_C2PNB272W1 | C2PNB272W1 | |
SB_EC_C2PNB304W1 | C2PNB304W1 | |
SB_EC_C2TNB359V1 | C2TNB359V1 | |
SB_EC_C2PNB368W1 | C2PNB368W1 | |
SB_EC_C2TNB431R1 | C2TNB431R1 | |
SB_EC_NISTP192 | NISTP192 | |
SB_EC_NISTP224 | NISTP224 | |
SB_EC_NISTP256 | NISTP256 | |
SB_EC_NISTP384 | NISTP384 | |
SB_EC_NISTP521 | NISTP521 | |
SB_EC_NISTB163 | NISTB163 | |
SB_EC_NISTB233 | NISTB233 | |
SB_EC_NISTB283 | NISTB283 | |
SB_EC_NISTB409 | NISTB409 | |
SB_EC_NISTB571 | NISTB571 | |
SB_EC_NISTK163 | NISTK163 | |
SB_EC_NISTK233 | NISTK233 | |
SB_EC_NISTK283 | NISTK283 | |
SB_EC_NISTK409 | NISTK409 | |
SB_EC_NISTK571 | NISTK571 | |
SB_EC_GOSTCPTEST | GOSTCPTEST | |
SB_EC_GOSTCPA | GOSTCPA | |
SB_EC_GOSTCPB | GOSTCPB | |
SB_EC_GOSTCPC | GOSTCPC | |
SB_EC_GOSTCPXCHA | GOSTCPXCHA | |
SB_EC_GOSTCPXCHB | GOSTCPXCHB | |
SB_EC_BRAINPOOLP160R1 | BRAINPOOLP160R1 | |
SB_EC_BRAINPOOLP160T1 | BRAINPOOLP160T1 | |
SB_EC_BRAINPOOLP192R1 | BRAINPOOLP192R1 | |
SB_EC_BRAINPOOLP192T1 | BRAINPOOLP192T1 | |
SB_EC_BRAINPOOLP224R1 | BRAINPOOLP224R1 | |
SB_EC_BRAINPOOLP224T1 | BRAINPOOLP224T1 | |
SB_EC_BRAINPOOLP256R1 | BRAINPOOLP256R1 | |
SB_EC_BRAINPOOLP256T1 | BRAINPOOLP256T1 | |
SB_EC_BRAINPOOLP320R1 | BRAINPOOLP320R1 | |
SB_EC_BRAINPOOLP320T1 | BRAINPOOLP320T1 | |
SB_EC_BRAINPOOLP384R1 | BRAINPOOLP384R1 | |
SB_EC_BRAINPOOLP384T1 | BRAINPOOLP384T1 | |
SB_EC_BRAINPOOLP512R1 | BRAINPOOLP512R1 | |
SB_EC_BRAINPOOLP512T1 | BRAINPOOLP512T1 | |
SB_EC_CURVE25519 | CURVE25519 | |
SB_EC_CURVE448 | CURVE448 |
Fingerprint
TBytes (read-only)
Default Value: ""
Contains the fingerprint (a hash imprint) of this certificate.
FriendlyName
String (read-only)
Default Value: ""
Contains an associated alias (friendly name) of the certificate.
Handle
Int64
Default Value: 0
Allows to get or set a 'handle', a unique identifier of the underlying property object. Use this property to assign objects of the same type in a quicker manner, without copying them fieldwise.
When you pass a handle of one object to another, the source object is copied to the destination rather than assigned. It is safe to get rid of the original object
after such operation.
pdfSigner.setSigningCertHandle(certMgr.getCertHandle());
HashAlgorithm
String
Default Value: ""
Specifies the hash algorithm to be used in the operations on the certificate (such as key signing)
SB_HASH_ALGORITHM_SHA1 | SHA1 | |
SB_HASH_ALGORITHM_SHA224 | SHA224 | |
SB_HASH_ALGORITHM_SHA256 | SHA256 | |
SB_HASH_ALGORITHM_SHA384 | SHA384 | |
SB_HASH_ALGORITHM_SHA512 | SHA512 | |
SB_HASH_ALGORITHM_MD2 | MD2 | |
SB_HASH_ALGORITHM_MD4 | MD4 | |
SB_HASH_ALGORITHM_MD5 | MD5 | |
SB_HASH_ALGORITHM_RIPEMD160 | RIPEMD160 | |
SB_HASH_ALGORITHM_CRC32 | CRC32 | |
SB_HASH_ALGORITHM_SSL3 | SSL3 | |
SB_HASH_ALGORITHM_GOST_R3411_1994 | GOST1994 | |
SB_HASH_ALGORITHM_WHIRLPOOL | WHIRLPOOL | |
SB_HASH_ALGORITHM_POLY1305 | POLY1305 | |
SB_HASH_ALGORITHM_SHA3_224 | SHA3_224 | |
SB_HASH_ALGORITHM_SHA3_256 | SHA3_256 | |
SB_HASH_ALGORITHM_SHA3_384 | SHA3_384 | |
SB_HASH_ALGORITHM_SHA3_512 | SHA3_512 | |
SB_HASH_ALGORITHM_BLAKE2S_128 | BLAKE2S_128 | |
SB_HASH_ALGORITHM_BLAKE2S_160 | BLAKE2S_160 | |
SB_HASH_ALGORITHM_BLAKE2S_224 | BLAKE2S_224 | |
SB_HASH_ALGORITHM_BLAKE2S_256 | BLAKE2S_256 | |
SB_HASH_ALGORITHM_BLAKE2B_160 | BLAKE2B_160 | |
SB_HASH_ALGORITHM_BLAKE2B_256 | BLAKE2B_256 | |
SB_HASH_ALGORITHM_BLAKE2B_384 | BLAKE2B_384 | |
SB_HASH_ALGORITHM_BLAKE2B_512 | BLAKE2B_512 | |
SB_HASH_ALGORITHM_SHAKE_128 | SHAKE_128 | |
SB_HASH_ALGORITHM_SHAKE_256 | SHAKE_256 | |
SB_HASH_ALGORITHM_SHAKE_128_LEN | SHAKE_128_LEN | |
SB_HASH_ALGORITHM_SHAKE_256_LEN | SHAKE_256_LEN |
Issuer
String (read-only)
Default Value: ""
The common name of the certificate issuer (CA), typically a company name.
IssuerRDN
String
Default Value: ""
A collection of information, in the form of [OID, Value] pairs, uniquely identifying the certificate issuer.
KeyAlgorithm
String
Default Value: "0"
Specifies the public key algorithm of this certificate.
SB_CERT_ALGORITHM_ID_RSA_ENCRYPTION | rsaEncryption | |
SB_CERT_ALGORITHM_MD2_RSA_ENCRYPTION | md2withRSAEncryption | |
SB_CERT_ALGORITHM_MD5_RSA_ENCRYPTION | md5withRSAEncryption | |
SB_CERT_ALGORITHM_SHA1_RSA_ENCRYPTION | sha1withRSAEncryption | |
SB_CERT_ALGORITHM_ID_DSA | id-dsa | |
SB_CERT_ALGORITHM_ID_DSA_SHA1 | id-dsa-with-sha1 | |
SB_CERT_ALGORITHM_DH_PUBLIC | dhpublicnumber | |
SB_CERT_ALGORITHM_SHA224_RSA_ENCRYPTION | sha224WithRSAEncryption | |
SB_CERT_ALGORITHM_SHA256_RSA_ENCRYPTION | sha256WithRSAEncryption | |
SB_CERT_ALGORITHM_SHA384_RSA_ENCRYPTION | sha384WithRSAEncryption | |
SB_CERT_ALGORITHM_SHA512_RSA_ENCRYPTION | sha512WithRSAEncryption | |
SB_CERT_ALGORITHM_ID_RSAPSS | id-RSASSA-PSS | |
SB_CERT_ALGORITHM_ID_RSAOAEP | id-RSAES-OAEP | |
SB_CERT_ALGORITHM_RSASIGNATURE_RIPEMD160 | ripemd160withRSA | |
SB_CERT_ALGORITHM_ID_ELGAMAL | elGamal | |
SB_CERT_ALGORITHM_SHA1_ECDSA | ecdsa-with-SHA1 | |
SB_CERT_ALGORITHM_RECOMMENDED_ECDSA | ecdsa-recommended | |
SB_CERT_ALGORITHM_SHA224_ECDSA | ecdsa-with-SHA224 | |
SB_CERT_ALGORITHM_SHA256_ECDSA | ecdsa-with-SHA256 | |
SB_CERT_ALGORITHM_SHA384_ECDSA | ecdsa-with-SHA384 | |
SB_CERT_ALGORITHM_SHA512_ECDSA | ecdsa-with-SHA512 | |
SB_CERT_ALGORITHM_EC | id-ecPublicKey | |
SB_CERT_ALGORITHM_SPECIFIED_ECDSA | ecdsa-specified | |
SB_CERT_ALGORITHM_GOST_R3410_1994 | id-GostR3410-94 | |
SB_CERT_ALGORITHM_GOST_R3410_2001 | id-GostR3410-2001 | |
SB_CERT_ALGORITHM_GOST_R3411_WITH_R3410_1994 | id-GostR3411-94-with-GostR3410-94 | |
SB_CERT_ALGORITHM_GOST_R3411_WITH_R3410_2001 | id-GostR3411-94-with-GostR3410-2001 | |
SB_CERT_ALGORITHM_SHA1_ECDSA_PLAIN | ecdsa-plain-SHA1 | |
SB_CERT_ALGORITHM_SHA224_ECDSA_PLAIN | ecdsa-plain-SHA224 | |
SB_CERT_ALGORITHM_SHA256_ECDSA_PLAIN | ecdsa-plain-SHA256 | |
SB_CERT_ALGORITHM_SHA384_ECDSA_PLAIN | ecdsa-plain-SHA384 | |
SB_CERT_ALGORITHM_SHA512_ECDSA_PLAIN | ecdsa-plain-SHA512 | |
SB_CERT_ALGORITHM_RIPEMD160_ECDSA_PLAIN | ecdsa-plain-RIPEMD160 | |
SB_CERT_ALGORITHM_WHIRLPOOL_RSA_ENCRYPTION | whirlpoolWithRSAEncryption | |
SB_CERT_ALGORITHM_ID_DSA_SHA224 | id-dsa-with-sha224 | |
SB_CERT_ALGORITHM_ID_DSA_SHA256 | id-dsa-with-sha256 | |
SB_CERT_ALGORITHM_SHA3_224_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-224 | |
SB_CERT_ALGORITHM_SHA3_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-256 | |
SB_CERT_ALGORITHM_SHA3_384_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-384 | |
SB_CERT_ALGORITHM_SHA3_512_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-sha3-512 | |
SB_CERT_ALGORITHM_SHA3_224_ECDSA | id-ecdsa-with-sha3-224 | |
SB_CERT_ALGORITHM_SHA3_256_ECDSA | id-ecdsa-with-sha3-256 | |
SB_CERT_ALGORITHM_SHA3_384_ECDSA | id-ecdsa-with-sha3-384 | |
SB_CERT_ALGORITHM_SHA3_512_ECDSA | id-ecdsa-with-sha3-512 | |
SB_CERT_ALGORITHM_SHA3_224_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-224 | |
SB_CERT_ALGORITHM_SHA3_256_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-256 | |
SB_CERT_ALGORITHM_SHA3_384_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-384 | |
SB_CERT_ALGORITHM_SHA3_512_ECDSA_PLAIN | id-ecdsa-plain-with-sha3-512 | |
SB_CERT_ALGORITHM_ID_DSA_SHA3_224 | id-dsa-with-sha3-224 | |
SB_CERT_ALGORITHM_ID_DSA_SHA3_256 | id-dsa-with-sha3-256 | |
SB_CERT_ALGORITHM_BLAKE2S_128_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s128 | |
SB_CERT_ALGORITHM_BLAKE2S_160_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s160 | |
SB_CERT_ALGORITHM_BLAKE2S_224_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s224 | |
SB_CERT_ALGORITHM_BLAKE2S_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2s256 | |
SB_CERT_ALGORITHM_BLAKE2B_160_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b160 | |
SB_CERT_ALGORITHM_BLAKE2B_256_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b256 | |
SB_CERT_ALGORITHM_BLAKE2B_384_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b384 | |
SB_CERT_ALGORITHM_BLAKE2B_512_RSA_ENCRYPTION | id-rsassa-pkcs1-v1_5-with-blake2b512 | |
SB_CERT_ALGORITHM_BLAKE2S_128_ECDSA | id-ecdsa-with-blake2s128 | |
SB_CERT_ALGORITHM_BLAKE2S_160_ECDSA | id-ecdsa-with-blake2s160 | |
SB_CERT_ALGORITHM_BLAKE2S_224_ECDSA | id-ecdsa-with-blake2s224 | |
SB_CERT_ALGORITHM_BLAKE2S_256_ECDSA | id-ecdsa-with-blake2s256 | |
SB_CERT_ALGORITHM_BLAKE2B_160_ECDSA | id-ecdsa-with-blake2b160 | |
SB_CERT_ALGORITHM_BLAKE2B_256_ECDSA | id-ecdsa-with-blake2b256 | |
SB_CERT_ALGORITHM_BLAKE2B_384_ECDSA | id-ecdsa-with-blake2b384 | |
SB_CERT_ALGORITHM_BLAKE2B_512_ECDSA | id-ecdsa-with-blake2b512 | |
SB_CERT_ALGORITHM_BLAKE2S_128_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s128 | |
SB_CERT_ALGORITHM_BLAKE2S_160_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s160 | |
SB_CERT_ALGORITHM_BLAKE2S_224_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s224 | |
SB_CERT_ALGORITHM_BLAKE2S_256_ECDSA_PLAIN | id-ecdsa-plain-with-blake2s256 | |
SB_CERT_ALGORITHM_BLAKE2B_160_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b160 | |
SB_CERT_ALGORITHM_BLAKE2B_256_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b256 | |
SB_CERT_ALGORITHM_BLAKE2B_384_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b384 | |
SB_CERT_ALGORITHM_BLAKE2B_512_ECDSA_PLAIN | id-ecdsa-plain-with-blake2b512 | |
SB_CERT_ALGORITHM_ID_DSA_BLAKE2S_224 | id-dsa-with-blake2s224 | |
SB_CERT_ALGORITHM_ID_DSA_BLAKE2S_256 | id-dsa-with-blake2s256 | |
SB_CERT_ALGORITHM_EDDSA_ED25519 | id-Ed25519 | |
SB_CERT_ALGORITHM_EDDSA_ED448 | id-Ed448 | |
SB_CERT_ALGORITHM_EDDSA_ED25519_PH | id-Ed25519ph | |
SB_CERT_ALGORITHM_EDDSA_ED448_PH | id-Ed448ph | |
SB_CERT_ALGORITHM_EDDSA | id-EdDSA | |
SB_CERT_ALGORITHM_EDDSA_SIGNATURE | id-EdDSA-sig |
KeyBits
Integer (read-only)
Default Value: 0
Returns the length of the public key.
KeyFingerprint
TBytes (read-only)
Default Value: ""
Returns a fingerprint of the public key contained in the certificate.
KeyUsage
Integer
Default Value: 0
Indicates the purposes of the key contained in the certificate, in the form of an OR'ed flag set.
This value is a bit mask of the following values:
ckuUnknown | 0x00000 | Unknown key usage |
ckuDigitalSignature | 0x00001 | Digital signature |
ckuNonRepudiation | 0x00002 | Non-repudiation |
ckuKeyEncipherment | 0x00004 | Key encipherment |
ckuDataEncipherment | 0x00008 | Data encipherment |
ckuKeyAgreement | 0x00010 | Key agreement |
ckuKeyCertSign | 0x00020 | Certificate signing |
ckuCRLSign | 0x00040 | Revocation signing |
ckuEncipherOnly | 0x00080 | Encipher only |
ckuDecipherOnly | 0x00100 | Decipher only |
ckuServerAuthentication | 0x00200 | Server authentication |
ckuClientAuthentication | 0x00400 | Client authentication |
ckuCodeSigning | 0x00800 | Code signing |
ckuEmailProtection | 0x01000 | Email protection |
ckuTimeStamping | 0x02000 | Timestamping |
ckuOCSPSigning | 0x04000 | OCSP signing |
ckuSmartCardLogon | 0x08000 | Smartcard logon |
ckuKeyPurposeClientAuth | 0x10000 | Kerberos - client authentication |
ckuKeyPurposeKDC | 0x20000 | Kerberos - KDC |
KeyValid
Boolean (read-only)
Default Value: False
Returns True if the certificate's key is cryptographically valid, and False otherwise.
OCSPLocations
String
Default Value: ""
Locations of OCSP (Online Certificate Status Protocol) services that can be used to check this certificate's validity, as recorded by the CA.
OCSPNoCheck
Boolean
Default Value: False
Accessor to the value of the certificate's ocsp-no-check extension.
Origin
Integer (read-only)
Default Value: 0
Returns the origin of this certificate.
PolicyIDs
String
Default Value: ""
Contains identifiers (OIDs) of the applicable certificate policies.
The Certificate Policies extension identifies a sequence of policies under which the certificate has been issued, and which regulate its usage.
PrivateKeyBytes
TBytes (read-only)
Default Value: ""
Contains the certificate's private key. It is normal for this property to be empty if the private key is non-exportable.
PrivateKeyExists
Boolean (read-only)
Default Value: False
Indicates whether the certificate has an associated private key.
PrivateKeyExtractable
Boolean (read-only)
Default Value: False
Indicates whether the private key is extractable.
PublicKeyBytes
TBytes (read-only)
Default Value: ""
Contains the certificate's public key in DER format.
QualifiedStatements
TsbxQualifiedStatementsTypes
Default Value: 0
Returns the qualified status of the certificate.
SelfSigned
Boolean (read-only)
Default Value: False
Indicates whether the certificate is self-signed (root) or signed by an external CA.
SerialNumber
TBytes
Default Value: ""
Returns the certificate's serial number.
SigAlgorithm
String (read-only)
Default Value: ""
Indicates the algorithm that was used by the CA to sign this certificate.
Subject
String (read-only)
Default Value: ""
The common name of the certificate holder, typically an individual's name, a URL, an e-mail address, or a company name.
SubjectAlternativeName
String
Default Value: ""
Returns or sets the value of the Subject Alternative Name extension of the certificate.
SubjectKeyID
TBytes
Default Value: ""
Contains a unique identifier (fingerprint) of the certificate's private key.
Subject Key Identifier is a (non-critical) X.509 certificate extension which allows the identification of certificates containing a particular public key. In SecureBlackbox, the unique identifier is represented with a SHA1 hash of the bit string of the subject public key.
SubjectRDN
String
Default Value: ""
A collection of information, in the form of [OID, Value] pairs, uniquely identifying the certificate holder (subject).
ValidFrom
String
Default Value: ""
The time point at which the certificate becomes valid, in UTC.
ValidTo
String
Default Value: ""
The time point at which the certificate expires, in UTC.
Constructors
>
constructor Create();
Creates a new object with default field values.
SAMLArtifact Type
Represents a SAML Artifact entity.
Remarks
This type is a container for a SAML Artifact entity. A SAML artifact consists of a TypeCode, an EndpointIndex, and a RemainingArtifact, which contains the body of the artifact and varies depending on the TypeCode.
Fields
EndpointIndex
Integer
Default Value: 0
An accessor to the EndpointIndex entry of the artifact.
The EndpointIndex references a specific artifact resolution endpoint (IdP or SP) managed by the artifact issuer.
MessageHandle
TBytes
Default Value: ""
An accessor to the MessageHandle property of the artifact.
A message handle is a unique reference to a SAML message that can be produced by the artifact issuer upon request.
RemainingArtifact
TBytes (read-only)
Default Value: ""
Returns the contents of the artifact.
Check this property to access the encoded contents of the artifact. This property is updated internally from the parameters of the artifact.
SourceID
TBytes
Default Value: ""
An accessor to the SourceID property of the artifact.
SourceID uniquely identifies the issuer of the artifact.
TypeCode
Integer
Default Value: 0
The TypeCode field of the artifact.
The type code artifact parameter uniquely identifies the artifact format. Currently (as per SAML 2.0) the only type code of 4 is defined. This format assumes the presence of RemainingArtifact, SourceID, and MessageHandle parameters.
URI
String
Default Value: ""
An accessor to the URI property of the artifact.
The URI property contains the origin of the artifact.
Constructors
>
constructor Create();
Creates a new SAMLArtifact object.
SAMLAssertionCondition Type
Represents a SAML assertion Condition parameter.
Remarks
This type is a container for a single Condition parameter of a SAML assertion.
Fields
AudienceList
String
Default Value: ""
An accessor to the Audience list parameter of an audience restriction condition.
Use this property to read or set a list of audiences included in the restriction. Each audience is represented by an URI. Provide multiple audiences by splitting them with CRLF separators.
ConditionType
TsbxSAMLConditionTypes
Default Value: 0
Specifies a type of the condition object.
Use this property to check or specify a type of the condition object. This can be either an audience restriction, a one time use limitation, or a proxy restriction.
ProxyRestrictionCount
Integer
Default Value: 0
An accessor to the proxy restriction count element of the condition.
Use this setting to access or set the value of the proxy restriction count condition.
Constructors
>
constructor Create();
Creates a new SAMLAssertionCondition object.
SAMLAssertionIDRequest Type
Represents a SAML AssertionIDRequest object.
Remarks
This type is a container for a SAML AssertionIDRequest element. This element is used to request assertions by their IDs.
Fields
References
String
Default Value: ""
Contains the References entry of the SAML assertion ID request.
Use this property to read or specify the value of the References entry of the Assertion ID Request.
Constructors
>
constructor Create();
Creates a new SAMLAssertionIDRequest object.
SAMLAssertionInfo Type
Contains information about a SAML assertion.
Remarks
Use this type to get general information about a SAML assertion.
Fields
AdviceAssertionCount
Integer
Default Value: 0
Contains the number of advice assertions.
Use this property to access the number of advice assertions.
AssertionType
TsbxSAMLAssertionTypes
Default Value: 0
Specifies the type of the assertion.
Use this property to check or set the type of the assertion.
ChainValidationDetails
Integer (read-only)
Default Value: 0
The details of a certificate chain validation outcome. They may often suggest the reasons that contributed to the overall validation result.
Returns a bit mask of the following options:
cvrBadData | 0x0001 | One or more certificates in the validation path are malformed |
cvrRevoked | 0x0002 | One or more certificates are revoked |
cvrNotYetValid | 0x0004 | One or more certificates are not yet valid |
cvrExpired | 0x0008 | One or more certificates are expired |
cvrInvalidSignature | 0x0010 | A certificate contains a non-valid digital signature |
cvrUnknownCA | 0x0020 | A CA certificate for one or more certificates has not been found (chain incomplete) |
cvrCAUnauthorized | 0x0040 | One of the CA certificates are not authorized to act as CA |
cvrCRLNotVerified | 0x0080 | One or more CRLs could not be verified |
cvrOCSPNotVerified | 0x0100 | One or more OCSP responses could not be verified |
cvrIdentityMismatch | 0x0200 | The identity protected by the certificate (a TLS endpoint or an e-mail addressee) does not match what is recorded in the certificate |
cvrNoKeyUsage | 0x0400 | A mandatory key usage is not enabled in one of the chain certificates |
cvrBlocked | 0x0800 | One or more certificates are blocked |
cvrFailure | 0x1000 | General validation failure |
cvrChainLoop | 0x2000 | Chain loop: one of the CA certificates recursively signs itself |
cvrWeakAlgorithm | 0x4000 | A weak algorithm is used in one of certificates or revocation elements |
cvrUserEnforced | 0x8000 | The chain was considered invalid following intervention from a user code |
ChainValidationResult
TsbxChainValidities (read-only)
Default Value: 0
The outcome of a certificate chain validation routine.
Available options:
cvtValid | 0 | The chain is valid |
cvtValidButUntrusted | 1 | The chain is valid, but the root certificate is not trusted |
cvtInvalid | 2 | The chain is not valid (some of certificates are revoked, expired, or contain an invalid signature) |
cvtCantBeEstablished | 3 | The validity of the chain cannot be established because of missing or unavailable validation information (certificates, CRLs, or OCSP responses) |
Use the ValidationLog property to access the detailed validation log.
ConditionsNotBefore
String
Default Value: ""
Represents the Conditions.NotBefore assertion property.
Use this property to get or set the Conditions.NotBefore property of the assertion.
ConditionsNotOnOrAfter
String
Default Value: ""
Represents the Conditions.NotOnOrAfter assertion property.
Use this property to get or set the Conditions.NotOnOrAfter property of the assertion.
EncryptedContent
String
Default Value: ""
Represents the encrypted assertion content.
Use this property to get or set the encrypted assertion content.
ID
String
Default Value: ""
Represents the ID of the assertion.
Use this property to read or set the unique ID of the assertion.
IDRef
String
Default Value: ""
Represents an ID reference value.
Use this property to read or set the ID reference value for assertions of csatAssertionIDRef type.
IssueInstant
String
Default Value: ""
Contains the assertion issuance time stamp.
Use this property to check or set the assertion issuance time.
SignatureValidationResult
TsbxSignatureValidities (read-only)
Default Value: 0
The outcome of the cryptographic signature validation.
The following signature validity values are supported:
svtValid | 0 | The signature is valid |
svtUnknown | 1 | Signature validity is unknown |
svtCorrupted | 2 | The signature is corrupted |
svtSignerNotFound | 3 | Failed to acquire the signing certificate. The signature cannot be validated. |
svtFailure | 4 | General failure |
Signed
Boolean
Default Value: False
Specifies whether the assertion is signed.
Use this property to establish whether the assertion is signed.
URIRef
String
Default Value: ""
Represents an URI reference value.
Use this property to read or set the URI reference value for assertions of csatAssertionURIRef type.
ValidationLog
String (read-only)
Default Value: ""
Contains the signing certificate's chain validation log. This information may be very useful in investigating chain validation failures.
Version
String
Default Value: ""
Specifies the SAML protocol version used.
This property specifies the SAML protocol version. The default value is 2.0.
Constructors
>
constructor Create();
Creates a new SAMLAssertionInfo object.
SAMLAssertionStatement Type
Represents an assertion statement.
Remarks
This type is a container for an assertion statement.
Fields
Attributes
String
Default Value: ""
Contains a list of statement attribute names.
Use this property to access the set of names of assertion attributes, separated by CRLF.
AuthnContextAuthenticatingAuthorities
String
Default Value: ""
Contains the list of authenticating authorities.
Use this property to access the list of URIs of authenticating authorities (IdP entity IDs).
AuthnContextChoice
String
Default Value: ""
Specifies the authentication context choice variant.
Use this property to set the authentication context choice variant. The currently supported values are v1 and v2. If this setting is left empty, the v1 variant is assumed.
AuthnContextClassRef
String
Default Value: ""
Indicates the authentication contexts class reference.
Use this property to get or set the authentication contexts class reference attribute.
AuthnContextDecl
String
Default Value: ""
Specifies the authentication contexts declaration.
Use this property to access or set the declaration element of the authentication context.
AuthnContextDeclRef
String
Default Value: ""
Specifies the authentication contexts declaration reference.
Use this property to get or set the declaration reference of the authentication context.
AuthnInstant
String
Default Value: ""
Specifies the authentication event timestamp.
Use this property to read or set the moment in time the authentication event took place.
AuthnSessionIndex
String
Default Value: ""
Contains the authentication session index.
Use this property to access or set the authentication session index.
AuthnSessionNotOnOrAfter
String
Default Value: ""
Maps to the SessionNotOnOrAfter parameter of the authentication statement.
Use this property to access or set the SessionNotOnOrAfter parameter of the authentication statement.
AuthnSubjectLocalityAddress
String
Default Value: ""
Specifies the authentication subjects address.
Use this property to specify the address parameter of the authentication subjects locality.
AuthnSubjectLocalityDNSName
String
Default Value: ""
Maps to the authentication subjects DNS name parameter.
Use this property to access or set the authentication subjects DNS name locality parameter.
AuthzActions
String
Default Value: ""
Provides access to the list of actions of the authorization statement.
Use this property to read or set the actions of the authorization statement. Actions are represented as a list of Namespace=namespace;Value=Value strings, separated with CRLFs.
AuthzDecision
TsbxSAMLDecisions
Default Value: 0
Specifies the authorization decision.
Use this property to check or set the authorization decision. This can be one of Permit, Deny, or Indeterminate.
AuthzDecisionEvidence
String
Default Value: ""
Manages the authorization decision statement evidence parameter.
Use this property to read or set the authorization decision statement evidence parameter.
AuthzDecisionResource
String
Default Value: ""
Specifies the authorization decision statement resource parameter.
Use this property to access or set the resource parameter of the authorization statement.
StatementType
TsbxSAMLAssertionStatementTypes
Default Value: 0
Specifies the assertion statement type.
This property specifies the assertion statement type. A statement can carry an authentication assertion, an attribute assertion, or an authorization decision assertion.
Constructors
>
constructor Create();
Creates a new SAMLAssertionStatement object.
SAMLAttribute Type
A container for the SAML attribute object.
Remarks
This type is a container for the SAML attribute object.
Fields
FriendlyName
String
Default Value: ""
Specifies the friendly name of the attribute
Use this property to access or set the friendly name of a SAML attribute (e.g. givenName).
Name
String
Default Value: ""
Specifies the name of the attribute.
Use this property to read or set the formal name of the attribute (e.g. urn:oid:2.5.4.42).
NameFormat
String
Default Value: ""
Indicates the format used to reference the attribute.
This property specifies the format that is used to reference the attribute (e.g. urn:oasis:names:tc:SAML:2.0:attrname-format:uri).
StatementIndex
Integer
Default Value: -1
Contains the index of the statement the attribute corresponds to.
Use this property to read or set the index of the statement in the statement list that this attribute corresponds to.
Values
String
Default Value: ""
Contains a list of attribute values.
Use this property to access or set the value(s) included with the attribute. The value contains a list of strings of ContentType=contentType;Value=value format, separated with CRLF.
Constructors
>
constructor Create();
Creates a new SAMLAttribute object.
SAMLAuthnQuery Type
A container for AuthnQuery element.
Remarks
This type is a container for SAML AuthnQuery element, which represents an authentication event query.
Fields
Comparison
TsbxSAMLAuthnContextComparisons
Default Value: 0
Specifies the authentication context comparison method.
Use this property to access or set the authentication contexts comparison method (none, exact, minimum, maximum, or better).
ContextClassRefs
String
Default Value: ""
Specifies the context class reference.
Use this property to access or set the authentication context class reference.
RefType
TsbxSAMLAuthnRefTypes
Default Value: 0
Specifies the context reference type.
Use this property to access or set the authentication contexts reference type (class or declaration).
SessionIndex
String
Default Value: ""
Specifies the index of the session to the authentication entity.
Use this property to access or set the index of the session to the authentication entity.
Constructors
>
constructor Create();
Creates a new SAMLAuthnQuery object.
SAMLAuthnRequest Type
Represents a SAML AuthnRequest object.
Remarks
This type represents a SAML AuthnRequest object. An AuthnRequest is sent by a principal to the identity provider when it needs to request an assertion containing an authentication statement.
Fields
AssertionConsumerServiceIndex
Integer
Default Value: 0
Specifies the assertion consumer service index.
Use this property to access or set the location index to which the response has to be returned.
AssertionConsumerServiceURL
String
Default Value: ""
Specifies the assertion consumer service URL.
Use this property to access or set the URL of the location to which the response has to be returned.
AttributeConsumingServiceIndex
Integer
Default Value: 0
Specifies the attribute consuming service index.
Use this property to read or set the attribute consuming service index.
ConditionsNotBefore
String
Default Value: ""
Specifies the NotBefore condition of the request.
Use this property to access or set the NotBefore condition of the request.
ConditionsNotOnOrAfter
String
Default Value: ""
Provides access to the NotOnOrAfter condition of the request.
Use this property to access or set the NotOnOrAfter condition of the request.
ContextClassRefs
String
Default Value: ""
Provides access to the authentication context class references.
Use this property to access or set the class references of the authentication context. This property may contain a list of CRLF-separated strings.
ContextComparison
TsbxSAMLAuthnContextComparisons
Default Value: 0
Specifies the AuthnContext comparison method.
Use this property to access or set the authentication contexts comparison method (none, exact, minimum, maximum, or better).
ContextRefType
TsbxSAMLAuthnRefTypes
Default Value: 0
Specifies the context reference type.
Use this property to get or set the context reference type (Class or Declaration).
ForceAuthn
Boolean
Default Value: False
Corresponds to the ForceAuthn parameter of the request.
Use this property to check or set the ForceAuthn parameter of the request, which enforces the identity provider to re-authenticate the presenter.
IsPassive
Boolean
Default Value: False
Maps to the IsPassive parameter of the request.
Use this property to access or set the IsPassive parameter of the authentication request. IsPassive sets out the control the identity provider and user agent have over the authenticating users UI.
NameIDPolicyAllowCreate
Boolean
Default Value: False
Matches the AllowCreate attribute of NameIDPolicy element of the request.
Use this property to access or set the AllowCreate attribute of NameIDPolicy, which allows or disallows the identity provider to create a new identifier when processing the authentication request.
NameIDPolicyFormat
String
Default Value: ""
Matches to the Format attribute of the NameIDPolicy element of the request.
Use this property to access or set the Format attribute of NameIDPolicy.
NameIDPolicySPNameQualifier
String
Default Value: ""
Matches to the SP name qualifier attribute of the request.
Use this property to access or set the SP name qualifier attribute of the authentication request.
NameIDPolicyUseAllowCreate
Boolean
Default Value: False
Controls inclusion of AllowCreate attribute in the request.
Use this property to check or specify whether the AllowCreate attribute is included in the authentication request.
ProtocolBinding
String
Default Value: ""
Specifies the protocol binding to be requested in the authentication request.
Use this property to check or set the protocol binding to be used when responding to this request.
ProviderName
String
Default Value: ""
Specifies the name of the requestor.
Use this property to read or set the name of the requestor.
ScopingIDPListGetComplete
String
Default Value: ""
Matches the GetComplete element of the IDPList entry of the Scoping object.
Use this property to access or set the GetComplete element of the IDPList entry of the Scoping object of the authentication request. This property typically contains an URI that allows to retrieve a complete list of identity providers.
ScopingProxyCount
Integer
Default Value: 0
The maximum number of proxies on the way between the requestor and the provider.
Use this property to get or set the maximum number of intermediaries allowed between the requestor and the provider.
ScopingRequesterIDs
String
Default Value: ""
A collection of requestor IDs on whose behalf the request is being sent.
Use this property to specify or read the requestor IDs, in the form of CRLF-separated strings, on whose behalf the request is being sent.
UseForceAuthn
Boolean
Default Value: False
Controls inclusion of ForceAuthn attribute in the request.
Use this property to check or enable presence of the ForceAuthn attribute in the authentication request. Set this property to false to suppress inclusion of the attribute.
UseIsPassive
Boolean
Default Value: False
Controls inclusion of IsPassive attribute in the request.
Use this property to check or enable presence of the IsPassive attribute in the authentication request. Set this property to false to suppress inclusion of the attribute.
Constructors
>
constructor Create();
Creates a new SAMLAuthnRequest object.
SAMLAuthzDecisionQuery Type
Represents SAML AuthzDecisionQuery element.
Remarks
This type is a container for SAML AuthzDecisionQuery type.
Fields
Actions
String
Default Value: ""
Specifies the list of actions included in the query.
Read or set this property to access the list of actions (as CRLF-separated strings) included in the query.
Resource
String
Default Value: ""
Matches the Resource element of the query.
Use this property to read or set the Resource element of the authorization decision query.
Constructors
>
constructor Create();
Creates a new SAMLAuthzDecisionQuery object.
SAMLIDPEntry Type
Represents a single identity provider information.
Remarks
This type is a container of single identity provider-specific details.
Fields
Loc
String
Default Value: ""
Contains the value of the Loc attribute.
Use this property to access or set the value of the Loc (location) attribute.
Name
String
Default Value: ""
Contains the name of the IdP provider.
Use this property to retrieve or set the Name attribute of the IdP provider.
ProviderID
String
Default Value: ""
Contains the provider ID.
Use this property to read or set the identity provider ID.
Constructors
>
constructor Create();
Creates a new SAMLIDPEntry object.
SAMLLogoutRequest Type
Represents SAML LogoutRequest element.
Remarks
This type is a container for SAML LogoutRequest element.
Fields
NameID
String
Default Value: ""
Contains the value of the NameID parameter.
Use this property to access or set the value of the NameID parameter of the request.
NotOnOrAfter
String
Default Value: ""
Contains the value of the NotOnOrAfter parameter.
Use this property to access or set the value of the NotOnOrAfter parameter.
Reason
String
Default Value: ""
Contains the value of the Reason parameter.
Use this property to read or set the value of the Reason parameter.
SessionIndexes
String
Default Value: ""
Contains the list of session indices.
Use this property to access or set the list of session indices, as a CRLF-separated list of strings.
Constructors
>
constructor Create();
Creates a new SAMLLogoutRequest object.
SAMLManageNameIDRequest Type
Represents a SAML ManageNameIDRequest element.
Remarks
This type is a container for ManageNameIDRequest element.
Fields
NameID
String
Default Value: ""
Contains the value of the NameID parameter of the request.
Use this property to read or set the value of the NameID parameter of the request.
NewEncryptedID
String
Default Value: ""
Contains the value of the NewEncryptedID parameter of the request.
Use this property to check or set the value of the NewEncryptedID parameter of the request.
NewID
String
Default Value: ""
Contains the value of the NewID parameter.
Use this property to access or set the NewID parameter of the request.
Terminate
String
Default Value: ""
Contains the value of the Terminate parameter of the request.
Use this property to read or set the value of the Terminate parameter of the request.
Constructors
>
constructor Create();
Creates a new SAMLManageNameIDRequest object.
SAMLNameIDMappingRequest Type
Represents SAML NameIDMappingRequest element.
Remarks
This type is a container for NameIDMappingRequest element.
Fields
NameID
String
Default Value: ""
An accessor to the NameID parameter of the request.
Use this property to read or set the value of the NameID parameter of the request object.
NameIDPolicyAllowCreate
Boolean
Default Value: False
Contains the value of AllowCreate parameter of the NameIDPolicy object.
Use this property to read or set the value of the AllowCreate parameter of the NameIDPolicy object. AllowCreate regulates whether the identity provider is given permission to create new subject identifiers.
NameIDPolicyFormat
String
Default Value: ""
Specifies the format of the NameIDPolicy element.
Use this property to set or read the value of the Format parameter of the NameIDPolicy object.
NameIDPolicySPNameQualifier
String
Default Value: ""
Contains the SPNameQualifier parameter of the NameIDPolicy element.
Use this property to specify or read the value of the SPNameQualifier parameter of the NameIDPolicy element of the request.
NameIDPolicyUseAllowCreate
Boolean
Default Value: False
Controls inclusion of UseAllow modifier in the NameIDPolicy object.
Use this property to include or exclude the UseAllow parameter from the NameIDPolicy object.
Constructors
>
constructor Create();
Creates a new SAMLNameIDMappingRequest object.
SAMLPOSTBinding Type
Contains the details of the POST binding.
Remarks
This type provides access to properties of POST binding.
Fields
Body
String
Default Value: ""
Contains the form body.
Use this property to read or set the body of the form returned by the service provider.
FormTemplate
String
Default Value: ""
Contains the XHTML form template returned by the service provider.
Use this property to access or set the template of a POST form provided by the service provider.
Mode
TsbxSAMLPOSTBindingModes
Default Value: 0
Specifies whether binding is applied on a server, or on a client side.
Use this property to specify whether binding is used on the server or client side of the communication. The default value is cspmClient.
RelayState
String
Default Value: ""
Contains the value of the RelayState parameter of POST binding mechanism.
Use this property to read or set the value of the RelayState parameter of the POST binding. RelayState contains an uninterpreted service-provider-originating state object, which should be passed back to it with any further requests.
URL
String
Default Value: ""
Contains the URL of POST binding mechanism.
Use this property to check or set the URL of POST binding mechanism.
Constructors
>
constructor Create();
Creates a new SAMLPOSTBinding object.
SAMLRedirectBinding Type
Contains parameters of SAML Redirect binding.
Remarks
This type is a container for properties of SAML Redirect binding mechanism.
Fields
Encoding
String
Default Value: ""
Specifies the message encoding.
Use this property to access or set the message encoding.
ForceSign
Boolean
Default Value: False
Enforces a signature over all outgoing messages.
Use this property to enforce signing of all outgoing messages, independently of whether the original message was signed or not. See also Sign.
RelayState
String
Default Value: ""
Contains the RelayState parameter of the binding.
Use this property to access or set the RelayState parameter of the binding. This is an uninterpreted state string that should be passed back to the service provider with subsequent requests.
Sign
Boolean
Default Value: False
Specifies whether to sign generated messages.
Use this property to enable or disable signing of generated binding entities. The SAML specification instructs that the binding should only be signed if the original XML was. This property therefore is only taken into account if the original XML was signed. With that in mind, certain service providers demand the binding to be signed at all times. Use ForceSign property to enforce signatures on all binding entities.
SignatureAlgorithm
String
Default Value: ""
Contains the signature algorithm.
Use this property to get or set the signature algorithm. This corresponds to the SigAlg query string parameter, and contains the URI of the signature algorithm.
URL
String
Default Value: ""
Contains the URL of the request query.
Use this property to read or set the URL of the request query.
VerifySignatures
Boolean
Default Value: False
Instructs the component whether to verify incoming signatures.
Use this property to activate or deactivate verification of signatures in incoming requests.
Constructors
>
constructor Create();
Creates a new SAMLRedirectBinding object.
SAMLResponse Type
Represents a SAML response.
Remarks
This is a container for SAML response parameters.
Fields
NameID
String
Default Value: ""
Contains the NameID parameter of a NameIDMapping response.
Use this property to read or set the NameID parameter of the NameIDMapping response.
OptionalElement
String
Default Value: ""
An optional message element to be returned with the response.
Use this property to access or set the optional XML element returned with the response.
ResponseType
TsbxSAMLResponseTypes
Default Value: 0
Contains the type of the response.
Use this property to get or set the type of the SAML response.
StatusCodeSubValue
String
Default Value: ""
The value of the nested StatusCode.
This property contains the value of the nested StatusCode element.
StatusCodeValue
String
Default Value: ""
Contains the status code value.
Use this property to read or set one of the status codes defined by SAML specification, such as 'urn:oasis:names:tc:SAML:2.0:status:Success' or 'urn:oasis:names:tc:SAML:2.0:status:Requester'.
StatusDetail
String
Default Value: ""
Contains additional information on the status of the request.
The StatusDetail element contains additional request status information.
StatusMessage
String
Default Value: ""
Contains a status message (optional).
This property specifies the status message which may, optionally, be returned to an operator.
Constructors
>
constructor Create();
Creates a new SAMLResponse object.
SAMLSubjectConfirmation Type
Represents SAML SubjectConfirmation element.
Remarks
This type is a container for SAML SubjectConfirmating element.
Fields
DataAddress
String
Default Value: ""
Contains the address enabled for presenting assertions.
Use this property to specify the network address or location from which the subject confirmation should be issued. This optional element can be used to restrict the possibilities of an attacker to steal the assertion and present it from another IP address.
DataInResponseTo
String
Default Value: ""
The ID of the SAML message in response to which the assertion is issued.
This property specifies the ID of the SAML message in response to which the assertion is issued.
DataNotBefore
String
Default Value: ""
Time moment before which the subject cannot be confirmed.
This property specifies the time before which the subject cannot be confirmed.
DataNotOnOrAfter
String
Default Value: ""
Limits the time until which the subject can be confirmed.
This property specifies the time on (or after) which the subject cannot be confirmed.
DataRecipient
String
Default Value: ""
The URI of the entity or the location of the resource to which the assertion should be presented.
This property specifies The URI of the entity or the location of the resource to which the assertion should be presented.
DataType
String
Default Value: ""
The type of data contained in the confirmation.
Use this property to read or specify the type of confirmation data included in the object.
ID
String
Default Value: ""
The identifier of the entity which can satisfy the subject confirmation requirements.
This property specifies the identifier of the entity which is expected to satisfy the subject confirmation requirements.
Method
String
Default Value: ""
Specifies the mechanism to be used to confirm the subject.
This property contains a URI reference that identifies the mechanism to be used to confirm the subject.
Constructors
>
constructor Create();
Creates a new SAMLSubjectConfirmation object.
Config Settings (SAMLWriter Component)
The component 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 component, access to these internal properties is provided through the Config method.SAMLWriter Config Settings
If IgnoreSystemTrust is True, certificates residing in the trusted root store are treated as if they are known, rather than trusted. Only certificates provided via other means (such as the TrustedCertificates property) are considered trusted.
- CA, revocation source, TLS key usage requirements are not mandated
- Violation of OCSP issuer requirements are ignored
- The AuthorityKeyID extension in CRL- and certificate-issuing CAs are ignored (helps with incorrectly renewed certificates)
- Basic constraints and name constraints of CA certificates are ignored
- Some weaker algorithms are tolerated
Base Config Settings
You can switch this property off to improve performance if your project only uses known, good private keys.
Supported values are:
off | No caching (default) | |
local | Local caching | |
global | Global caching |
This setting only applies to sessions negotiated with TLS version 1.3.
Supported values are:
file | File | |
console | Console | |
systemlog | System Log (supported for Android only) | |
debugger | Debugger (supported for VCL for Windows and .Net) |
Supported values are:
time | Current time | |
level | Level | |
package | Package name | |
module | Module name | |
class | Class name | |
method | Method name | |
threadid | Thread Id | |
contenttype | Content type | |
content | Content | |
all | All details |
Supported filter names are:
exclude-package | Exclude a package specified in the value | |
exclude-module | Exclude a module specified in the value | |
exclude-class | Exclude a class specified in the value | |
exclude-method | Exclude a method specified in the value | |
include-package | Include a package specified in the value | |
include-module | Include a module specified in the value | |
include-class | Include a class specified in the value | |
include-method | Include a method specified in the value |
none | No flush (caching only) | |
immediate | Immediate flush (real-time logging) | |
maxcount | Flush cached entries upon reaching LogMaxEventCount entries in the cache. |
Supported values are:
none | None (by default) | |
fatal | Severe errors that cause premature termination. | |
error | Other runtime errors or unexpected conditions. | |
warning | Use of deprecated APIs, poor use of API, 'almost' errors, other runtime situations that are undesirable or unexpected, but not necessarily "wrong". | |
info | Interesting runtime events (startup/shutdown). | |
debug | Detailed information on flow of through the system. | |
trace | More detailed information. |
The default value of this setting is 100.
none | No rotation | |
deleteolder | Delete older entries from the cache upon reaching LogMaxEventCount | |
keepolder | Keep older entries in the cache upon reaching LogMaxEventCount (newer entries are discarded) |
Supported values are:
none | No static DNS rules (default) | |
local | Local static DNS rules | |
global | Global static DNS rules |
This setting only applies to certificates originating from a Windows system store.