Gio.TlsDatabase.prototype.lookup_certificates_issued_by
function lookup_certificates_issued_by(issuer_raw_dn: ByteArray, interaction: Gio.TlsInteraction, flags: Gio.TlsDatabaseLookupFlags, cancellable: Gio.Cancellable): Array(Gio.TlsCertificate) { // Gjs wrapper for g_tls_database_lookup_certificates_issued_by() }
Lookup certificates issued by this issuer in the database.
This function can block, use Gio.TlsDatabase.prototype.lookup_certificates_issued_by_async to perform the lookup operation asynchronously.
Since 2.30
- issuer_raw_dn
a GLib.ByteArray which holds the DER encoded issuer DN.
- interaction
used to interact with the user if necessary
- flags
Flags which affect the lookup operation.
- cancellable
a Gio.Cancellable, or null
- Returns
a newly allocated list of Gio.TlsCertificate objects. Use GObject.Object.prototype.unref on each certificate, and GLib.List.free on the release the list.