Module: Gio::TlsCertificateFlags

Defined in:
(unknown)

Constant Summary collapse

NO_FLAGS =

No flags set. Since: 2.74

0 or :no_flags
UNKNOWN_CA =

The signing certificate authority is not known.

1 or :unknown_ca
BAD_IDENTITY =

The certificate does not match the expected identity of the site that it was retrieved from.

2 or :bad_identity
NOT_ACTIVATED =

The certificate's activation time is still in the future

4 or :not_activated
EXPIRED =

The certificate has expired

8 or :expired
REVOKED =

The certificate has been revoked according to the GTls::Connection's certificate revocation list.

16 or :revoked
INSECURE =

The certificate's algorithm is considered insecure.

32 or :insecure
GENERIC_ERROR =

Some other error occurred validating the certificate

64 or :generic_error
VALIDATE_ALL =

the combination of all of the above flags

127 or :validate_all