TrustedRoots Lazarus Pascal Reference Documentation
TrustedRoots
Current Version: 11.6.0
Chilkat.TrustedRoots
Add root or CA certificates that should be trusted by Chilkat validation
operations.
Load one or more trusted CA certificates from PEM bundle files used by
many TLS and certificate-validation workflows.
Import trusted certificates from a
Choose whether Chilkat should also trust the operating system's CA root
certificates.
Control whether self-signed server certificates are rejected or accepted
during certificate validation.
Activate the configured trusted-root set so it is used by Chilkat classes
that perform TLS or signature certificate validation.
For an extended overview, see
TrustedRoots Class Overview.
Configure the trusted root certificates used by Chilkat certificate validation.
Chilkat.TrustedRoots manages a collection of trusted CA and
self-signed root certificates used Chilkat-wide for PKCS7/CMS signature
validation and SSL/TLS server certificate validation. It can add individual
certificates, import trusted certificates from a Java keystore, load PEM CA
bundles, activate or deactivate the trusted-root set, and control whether
system CA roots and self-signed server certificates are trusted.
Custom trusted roots
PEM CA bundles
Java keystore import
JavaKeyStore when trust
anchors are maintained in JKS-style storage.
System CA root control
Self-signed certificate policy
Activate Chilkat-wide trust
TrustedRoots object, add trusted certificates or load a
PEM CA bundle, configure whether system roots and self-signed certificates
should be trusted, then call Activate. Treat trusted roots as
Chilkat-wide validation configuration, not as private state for a single
object.
Create / Free
uses
Chilkat.TrustedRoots;
var
obj: TTrustedRoots;
begin
obj := TTrustedRoots.Create;
try
if not obj.IsValid then
raise Exception.Create('Failed to create a TTrustedRoots instance.');
// ... use obj ...
finally
obj.Free;
end;
end;
Allocates the underlying CkTrustedRoots object and returns a new TTrustedRoots instance. Simply adding Chilkat.TrustedRoots to the unit's uses clause is enough to locate and bind to the Chilkat shared library (DLL / .so / .dylib) at runtime — no separate load step is required. Check obj.IsValid after calling Create; it is False if the underlying library could not be found/loaded or the object could not be allocated (for example, when unlicensed).
Every TTrustedRoots created by calling Create should eventually be released by calling .Free (inherited from TObject). The destructor automatically disposes the underlying CkTrustedRoots handle. A native (unmanaged) memory leak occurs if the object is never freed.
Properties
DebugLogFilePath
If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.
Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.
Possible causes of hangs include:
- A timeout property set to 0, indicating an infinite timeout.
- A hang occurring within an event callback in the application code.
- An internal bug in the Chilkat code causing the hang.
LastErrorHtml
Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastErrorText
Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
LastErrorXml
Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.
topLastMethodSuccess
Indicates the success or failure of the most recent method call: True means success, False means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.
NumCerts
The number of certificates explicitly contained in this object. The count includes certificates added by AddCert, AddJavaKeyStore, and LoadCaCertsPem.
Use indexes from 0 through NumCerts - 1 with CertAt.
TrustSystemCaRoots. It reports only the certificates stored in this object.
RejectSelfSignedCerts
Controls the special case in which an SSL/TLS server presents a certificate chain containing exactly one certificate and that certificate is self-signed. The default value is .
False
| Value | Behavior |
|---|---|
| Do not reject a one-certificate TLS chain solely because the certificate is self-signed. |
| Reject TLS server chains consisting of one self-signed certificate. |
This property applies to the TLS server-certificate case described above. It does not reject a self-signed CA certificate merely because that certificate appears as the trust anchor above a longer chain.
TrustSystemCaRoots
Controls whether operating-system CA roots are included when this object's trust configuration is activated. The default value is .
True
| Value | Behavior |
|---|---|
| Trust explicitly added certificates and the system-provided CA roots available to Chilkat. |
| Do not automatically trust system-provided CA roots; use the explicitly configured collection and the selected self-signed-certificate policy. |
On Windows, system roots come from registry-based certificate stores. On Linux, Chilkat may use a system CA bundle such as /etc/ssl/certs/ca-certificates.crt when available.
System roots are not added to this object's explicit collection and therefore are not included in NumCerts or returned by CertAt.
VerboseLogging
If set to True, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is False. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.
Version
Methods
Activate
Activates this object's trust configuration for Chilkat-wide certificate validation. The active configuration includes:
- Certificates explicitly added to this object by
AddCert,AddJavaKeyStore, orLoadCaCertsPem. - Operating-system CA roots when
TrustSystemCaRootsis.True - The self-signed TLS certificate policy selected by
RejectSelfSignedCerts.
After activation, Chilkat classes that validate PKCS7/CMS signatures or SSL/TLS server certificate chains use this trust configuration. Returns if the configuration was activated successfully; otherwise returns True.False
AddCert
function AddCert(cert: TChilkatBase): Boolean;
Adds the certificate in cert to this object's explicit trusted-certificate collection. The certificate is subsequently treated as a trust anchor when this configuration is activated.
Returns if the certificate was added successfully; otherwise returns True.False
AddJavaKeyStore
function AddJavaKeyStore(keystore: TChilkatBase): Boolean;
Adds the certificates designated as trusted entries in the keystore JavaKeyStore to this object's explicit trusted-certificate collection.
Private keys and secret keys are not imported. Returns if the trusted certificates were added successfully; otherwise returns True.False
Returns True for success, False for failure.
topCertAt
function CertAt(index: Integer;
cert: TChilkatBase): Boolean;
Copies the certificate at zero-based index into the caller-supplied Cert object in cert.
Valid indexes are from 0 through NumCerts - 1. Returns if the certificate was retrieved successfully; otherwise returns True, such as when the index is outside the valid range.False
This method enumerates only certificates explicitly contained in this TrustedRoots object. Operating-system roots enabled through TrustSystemCaRoots are not included.
Returns True for success, False for failure.
topDeactivate
Deactivates the previously activated Chilkat-wide trusted-root configuration. After deactivation, roots and single-certificate self-signed certificates are implicitly trusted.
Returns if the active configuration was deactivated successfully; otherwise returns True.False
Deactivate only when implicitly trusting arbitrary roots and self-signed certificates is intentional and acceptable for the application.
Returns True for success, False for failure.
topLoadCaCertsPem
Loads one or more PEM-encoded certificates from the file at path and adds them to this object's explicit trusted-certificate collection. A CA bundle normally contains consecutive -----BEGIN CERTIFICATE----- / -----END CERTIFICATE----- blocks.
This method can load a curated application bundle, a Mozilla-derived CA bundle, or a platform bundle such as /etc/ssl/certs/ca-certificates.crt when that file exists. Returns if the bundle was loaded successfully; otherwise returns True.False
LoadTaskCaller
function LoadTaskCaller(task: TChilkatBase): Boolean;
Associates task with the object that initiated the task's asynchronous method call. This supports Chilkat's asynchronous task infrastructure and is not normally called directly by application code.
Returns if the task caller was loaded successfully; otherwise returns True.False
Returns True for success, False for failure.
topEvents
Chilkat for Pascal supports three synchronous event callbacks: OnAbortCheck, OnPercentDone, and OnProgressInfo. Each is a property of the class; assign a method of one of your own objects (an of object handler) to receive the callbacks, or assign nil to unhook. The handler types are declared in the Chilkat.Base unit:
TChilkatAbortCheckEvent = function(Sender: TChilkatBase): Boolean of object;
TChilkatPercentDoneEvent = function(Sender: TChilkatBase; PctDone: Integer): Boolean of object;
TChilkatProgressInfoEvent = procedure(Sender: TChilkatBase; const Name, Value: string) of object;All Chilkat methods are synchronous, so callbacks are invoked on the thread that called the method -- if the method was called from the main thread, it is safe to access UI elements from the handler. The HeartbeatMs property controls the frequency of OnAbortCheck callbacks (the default of 0 means no AbortCheck events fire). Returning True from an OnAbortCheck or OnPercentDone handler aborts the running method.
AbortCheck
property OnAbortCheck: TChilkatAbortCheckEvent;
Enables a method call to be aborted by triggering the AbortCheck event at intervals defined by the HeartbeatMs property. If HeartbeatMs is set to its default value of 0, no events will occur. For instance, set HeartbeatMs to 200 to trigger 5 AbortCheck events per second.
Event callback implementation:
// A handler is a method of one of your own classes, e.g. a form:
function TMyObject.TrustedRootsAbortCheck(Sender: TChilkatBase): Boolean;
begin
// Called every HeartbeatMs milliseconds while a method is running.
// Return True to abort the method; return False to continue.
Result := False;
end;To add an event handler:
trustedroots := TTrustedRoots.Create;
trustedroots.HeartbeatMs := 250; // fire OnAbortCheck 4 times per second
trustedroots.OnAbortCheck := MyObject.TrustedRootsAbortCheck;PercentDone
property OnPercentDone: TChilkatPercentDoneEvent;
This provides the percentage completion for any method involving network communications or time-consuming processing, assuming the progress can be measured as a percentage. This event is triggered only when it's possible and logical to express the operation's progress as a percentage. The pctDone argument will range from 1 to 100. For methods that finish quickly, the number of PercentDone callbacks may vary, but the final callback will have pctDone equal to 100. For longer operations, callbacks will not exceed one per percentage point (e.g., 1, 2, 3, ..., 98, 99, 100).
The PercentDone callback also acts as an AbortCheck event. For fast methods where PercentDone fires, an AbortCheck event may not trigger since the PercentDone callback already provides an opportunity to abort. For longer operations, where time between PercentDone callbacks is extended, AbortCheck callbacks enable more responsive operation termination.
To abort the operation, set the abort output argument to True. This will cause the method to terminate and return a failure status or corresponding failure value.
Event callback implementation:
// A handler is a method of one of your own classes, e.g. a form:
function TMyObject.TrustedRootsPercentDone(Sender: TChilkatBase; PctDone: Integer): Boolean;
begin
// PctDone ranges from 1 to 100.
WriteLn('Percent done: ', PctDone);
// Return True to abort the method; return False to continue.
Result := False;
end;To add an event handler:
trustedroots := TTrustedRoots.Create;
trustedroots.OnPercentDone := MyObject.TrustedRootsPercentDone;ProgressInfo
property OnProgressInfo: TChilkatProgressInfoEvent;
This event callback provides tag name/value pairs that detail what occurs during a method call. To discover existing tag names, create code to handle the event, emit the pairs, and review them. Most tag names are self-explanatory.
Note: Some Chilkat methods don't fire any ProgressInfo events.
Event callback implementation:
// A handler is a method of one of your own classes, e.g. a form:
procedure TMyObject.TrustedRootsProgressInfo(Sender: TChilkatBase; const Name, Value: string);
begin
WriteLn(Name, ': ', Value);
end;To add an event handler:
trustedroots := TTrustedRoots.Create;
trustedroots.OnProgressInfo := MyObject.TrustedRootsProgressInfo;