Top |
TpTLSCertificate is a TpProxy subclass for TLSCertificate objects, used in Channel.Type.ServerTLSConnection.
TpTLSCertificateRejection *
tp_tls_certificate_get_rejection (TpTLSCertificate *self
);
If this certificate has been rejected, return a TpTLSCertificateRejection indicating the first rejection reason (by convention, the most important).
If you want to list all the things that are wrong with the certificate
(for instance, it might be self-signed and also have expired)
you can call tp_tls_certificate_get_nth_rejection()
, increasing n
until
it returns NULL
.
Since 0.19.0
TpTLSCertificateRejection * tp_tls_certificate_get_nth_rejection (TpTLSCertificate *self
,guint n
);
If this certificate has been rejected and n
is less than the number of
rejection reasons, return a TpTLSCertificateRejection representing the
n
th rejection reason (starting from 0).
With n
== 0 this is equivalent to tp_tls_certificate_get_rejection()
.
self |
a TLS certificate |
|
n |
the rejection reason to return; if 0, return the same thing as
|
Since 0.19.0
void tp_tls_certificate_accept_async (TpTLSCertificate *self
,GAsyncReadyCallback callback
,gpointer user_data
);
Accept this certificate, asynchronously. In or after callback
,
you may call tp_tls_certificate_accept_finish()
to check the result.
“:state” will also be emitted when the connection manager signals that the certificate has been accepted.
self |
a TLS certificate |
|
callback |
called on success or failure |
|
user_data |
user data for the callback |
Since 0.19.0
gboolean tp_tls_certificate_accept_finish (TpTLSCertificate *self
,GAsyncResult *result
,GError **error
);
Check the result of tp_tls_certificate_accept_async()
.
self |
a TLS certificate |
|
result |
the result passed to the callback by
|
|
error |
used to raise an error if |
Since 0.19.0
void tp_tls_certificate_add_rejection (TpTLSCertificate *self
,TpTLSCertificateRejectReason reason
,const gchar *dbus_error
,GVariant *details
);
Add a pending reason for rejection. The first call to this method is
considered "most important". After calling this method as many times
as are required, call tp_tls_certificate_reject_async()
to reject the
certificate.
If details
is a floating reference (see g_variant_ref_sink()
),
ownership of details
is taken by this function. This means
you can pass the result of g_variant_new()
or g_variant_new_parsed()
directly to this function without additional reference-count management.
self |
a TLS certificate |
|
reason |
the reason for rejection |
|
dbus_error |
a D-Bus error name such as |
|
details |
a variant of type
|
[transfer none][allow-none] |
Since 0.19.0
void tp_tls_certificate_reject_async (TpTLSCertificate *self
,GAsyncReadyCallback callback
,gpointer user_data
);
Reject this certificate, asynchronously.
Before calling this method, you must call
tp_tls_certificate_add_rejection()
at least once, to set the reason(s)
for rejection (for instance, a certificate might be both self-signed and
expired).
In or after callback
,
you may call tp_tls_certificate_reject_finish()
to check the result.
“:state” will also be emitted when the connection manager signals that the certificate has been rejected.
self |
a TLS certificate |
|
callback |
called on success or failure |
|
user_data |
user data for the callback |
Since 0.19.0
gboolean tp_tls_certificate_reject_finish (TpTLSCertificate *self
,GAsyncResult *result
,GError **error
);
Check the result of tp_tls_certificate_reject_async()
.
self |
a TLS certificate |
|
result |
the result passed to the callback by
|
|
error |
used to raise an error if |
Since 0.19.0
const gchar *
tp_tls_certificate_get_cert_type (TpTLSCertificate *self
);
Return the “cert-type” property
Since 0.19.0
GPtrArray *
tp_tls_certificate_get_cert_data (TpTLSCertificate *self
);
Return the “cert-data” property
the value of “cert-data” property.
[transfer none][type GLib.PtrArray][element-type GLib.Bytes]
Since 0.19.0
TpTLSCertificateState
tp_tls_certificate_get_state (TpTLSCertificate *self
);
Return the “state” property
Since 0.19.0
struct TpTLSCertificate;
A TpProxy subclass representing a server or peer's TLS certificate being presented for acceptance/rejection.
Since 0.19.0
#define TP_TLS_CERTIFICATE_FEATURE_CORE
Expands to a call to a function that returns a quark representing the core functionality of a TpTLSCertificate.
When this feature is prepared, the basic properties of the object have been retrieved and are available for use:
In addition, “:state” will be emitted if the state changes.
One can ask for a feature to be prepared using the
tp_proxy_prepare_async()
function, and waiting for it to callback.
Since 0.19.0
“cert-data”
property“cert-data” GPtrArray *
The raw data of the certificate or certificate chain, represented as a GPtrArray of GBytes. It should be interpreted according to “cert-type”.
The first certificate in this array is the server's certificate, followed by its issuer, followed by the issuer's issuer and so on.
For "x509" certificates, each certificate is an X.509 certificate in binary (DER) format.
For "pgp" certificates, each certificate is a binary OpenPGP key.
Flags: Read
Since 0.19.0
“cert-type”
property“cert-type” gchar *
The type of the certificate, typically either "x509" or "pgp".
Flags: Read
Default value: NULL
Since 0.19.0
“parent”
property“parent” TpProxy *
A TpConnection or TpChannel which owns this TLS certificate. If the
parent object is invalidated, the certificate is also invalidated, and
this property is set to NULL
.
Flags: Read / Write / Construct Only
Since 0.19.0
“state”
property“state” guint
The state of this TLS certificate as a TpTLSCertificateState,
initially TP_TLS_CERTIFICATE_STATE_PENDING
.
“:state” will be emitted when this changes.
Flags: Read
Allowed values: <= 2
Default value: 0
Since 0.19.0