|
virtual | ~TlsCertificate () |
|
GTlsCertificate* | gobj () |
| Provides access to the underlying C GObject. More...
|
|
const GTlsCertificate* | gobj () const |
| Provides access to the underlying C GObject. More...
|
|
GTlsCertificate* | gobj_copy () |
| Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. More...
|
|
Glib::RefPtr< TlsCertificate > | get_issuer () |
| Gets the TlsCertificate representing cert's issuer, if known. More...
|
|
Glib::RefPtr< const
TlsCertificate > | get_issuer () const |
| Gets the TlsCertificate representing cert's issuer, if known. More...
|
|
TlsCertificateFlags | verify (const Glib::RefPtr< const SocketConnectable >& identity, const Glib::RefPtr< const TlsCertificate >& trusted_ca) const |
| This verifies cert and returns a set of TlsCertificateFlags indicating any problems found with it. More...
|
|
TlsCertificateFlags | verify (const Glib::RefPtr< const SocketConnectable >& identity) const |
| A verify() convenience overload. More...
|
|
TlsCertificateFlags | verify (const Glib::RefPtr< const TlsCertificate >& trusted_ca) const |
| A verify() convenience overload. More...
|
|
TlsCertificateFlags | verify () const |
| A verify() convenience overload. More...
|
|
bool | is_same (const Glib::RefPtr< const TlsCertificate >& cert_two) const |
| Check if two TlsCertificate objects represent the same certificate. More...
|
|
Glib::PropertyProxy_ReadOnly
< Glib::RefPtr
< Glib::ByteArray > > | property_certificate () const |
| The DER representation of the certificate. More...
|
|
Glib::PropertyProxy_ReadOnly
< std::string > | property_certificate_pem () const |
| The PEM representation of the certificate. More...
|
|
Glib::PropertyProxy_ReadOnly
< Glib::RefPtr< TlsCertificate > > | property_issuer () const |
| The certificate for the issuing entity. More...
|
|
virtual TlsCertificateFlags | verify_vfunc (const Glib::RefPtr< const SocketConnectable >& identity, const Glib::RefPtr< const TlsCertificate >& trusted_ca) const |
|
void* | get_data (const QueryQuark& key) |
|
void | set_data (const Quark& key, void* data) |
|
void | set_data (const Quark& key, void* data, DestroyNotify notify) |
|
void | remove_data (const QueryQuark& quark) |
|
void* | steal_data (const QueryQuark& quark) |
|
void | set_property_value (const Glib::ustring& property_name, const Glib::ValueBase& value) |
| You probably want to use a specific property_*() accessor method instead. More...
|
|
void | get_property_value (const Glib::ustring& property_name, Glib::ValueBase& value) const |
| You probably want to use a specific property_*() accessor method instead. More...
|
|
template<class PropertyType > |
void | set_property (const Glib::ustring& property_name, const PropertyType& value) |
| You probably want to use a specific property_*() accessor method instead. More...
|
|
template<class PropertyType > |
void | get_property (const Glib::ustring& property_name, PropertyType& value) const |
| You probably want to use a specific property_*() accessor method instead. More...
|
|
void | connect_property_changed (const Glib::ustring& property_name, const sigc::slot< void >& slot) |
| You can use the signal_changed() signal of the property proxy instead, but this is necessary when using the reduced API. More...
|
|
sigc::connection | connect_property_changed_with_return (const Glib::ustring& property_name, const sigc::slot< void >& slot) |
| You can use the signal_changed() signal of the property proxy instead, but this is necessary when using the reduced API. More...
|
|
void | freeze_notify () |
| Increases the freeze count on object. More...
|
|
void | thaw_notify () |
| Reverts the effect of a previous call to freeze_notify(). More...
|
|
virtual void | reference () const |
| Increment the reference count for this object. More...
|
|
virtual void | unreference () const |
| Decrement the reference count for this object. More...
|
|
GObject* | gobj () |
| Provides access to the underlying C GObject. More...
|
|
const GObject* | gobj () const |
| Provides access to the underlying C GObject. More...
|
|
GObject* | gobj_copy () const |
| Give a ref-ed copy to someone. Use for direct struct access. More...
|
|
|
| TlsCertificate (const std::string& data, gssize length) |
|
| TlsCertificate (const std::string& file) |
|
| TlsCertificate (const std::string& cert_file, const std::string& key_file) |
|
| Object () |
|
| Object (const Glib::ConstructParams& construct_params) |
|
| Object (GObject* castitem) |
|
virtual | ~Object () |
|
| ObjectBase () |
| This default constructor is called implicitly from the constructor of user-derived classes, even if, for instance, Gtk::Button calls a different ObjectBase constructor. More...
|
|
| ObjectBase (const char* custom_type_name) |
| A derived constructor always overrides this choice. More...
|
|
| ObjectBase (const std::type_info& custom_type_info) |
| This constructor is a special feature to allow creation of derived types on the fly, without having to use g_object_new() manually. More...
|
|
virtual | ~ObjectBase ()=0 |
|
void | initialize (GObject* castitem) |
|
TlsCertificate - TLS certificate.
A certificate used for TLS authentication and encryption. This can represent either a certificate only (eg, the certificate received by a client from a server), or the combination of a certificate and a private key (which is needed when acting as a TlsServerConnection).
- Since glibmm 2.36:
This verifies cert and returns a set of TlsCertificateFlags indicating any problems found with it.
This can be used to verify a certificate outside the context of making a connection, or to check a certificate against a CA that is not part of the system CA database.
If identity is not 0
, cert's name(s) will be compared against it, and TLS_CERTIFICATE_BAD_IDENTITY will be set in the return value if it does not match. If identity is 0
, that bit will never be set in the return value.
If trusted_ca is not 0
, then cert (or one of the certificates in its chain) must be signed by it, or else TLS_CERTIFICATE_UNKNOWN_CA will be set in the return value. If trusted_ca is 0
, that bit will never be set in the return value.
(All other TlsCertificateFlags values will always be set or unset as appropriate.)
- Since glibmm 2.28:
- Parameters
-
identity | The expected peer identity. |
trusted_ca | The certificate of a trusted authority. |
- Returns
- The appropriate TlsCertificateFlags.