summaryrefslogtreecommitdiff
path: root/gio/gtlscertificate.c
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2012-08-01 10:41:02 +0200
committerStef Walter <stefw@gnome.org>2012-08-03 18:58:30 +0200
commit6ddf40f301439c01bec24344694074bd9ba5f016 (patch)
tree21d01c677f2f65253029b699aa13fa6a9a02cefe /gio/gtlscertificate.c
parentb913b0c29ed7269a1684ec15f27b59a8ad2ef5e4 (diff)
downloadglib-6ddf40f301439c01bec24344694074bd9ba5f016.tar.gz
gtlscertificate: Add g_tls_certificate_is_same() function
* Certificate equality in PKIX in general is equality between the DER encoding of the certificates. https://bugzilla.gnome.org/show_bug.cgi?id=681116
Diffstat (limited to 'gio/gtlscertificate.c')
-rw-r--r--gio/gtlscertificate.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/gio/gtlscertificate.c b/gio/gtlscertificate.c
index 2cea2be8b..6c0437840 100644
--- a/gio/gtlscertificate.c
+++ b/gio/gtlscertificate.c
@@ -560,3 +560,40 @@ g_tls_certificate_verify (GTlsCertificate *cert,
{
return G_TLS_CERTIFICATE_GET_CLASS (cert)->verify (cert, identity, trusted_ca);
}
+
+/**
+ * g_tls_certificate_is_same:
+ * @cert_one: first certificate to compare
+ * @cert_two: second certificate to compare
+ *
+ * Check if two #GTlsCertificate objects represent the same certificate.
+ * The raw DER byte data of the two certificates are checked for equality.
+ * This has the effect that two certificates may compare equal even if
+ * their #GTlsCertificate:issuer, #GTlsCertificate:private-key, or
+ * #GTlsCertificate:private-key-pem properties differ.
+ *
+ * Return value: whether the same or not
+ *
+ * Since: 2.34
+ */
+gboolean
+g_tls_certificate_is_same (GTlsCertificate *cert_one,
+ GTlsCertificate *cert_two)
+{
+ GByteArray *b1, *b2;
+ gboolean equal;
+
+ g_return_val_if_fail (G_IS_TLS_CERTIFICATE (cert_one), FALSE);
+ g_return_val_if_fail (G_IS_TLS_CERTIFICATE (cert_two), FALSE);
+
+ g_object_get (cert_one, "certificate", &b1, NULL);
+ g_object_get (cert_two, "certificate", &b2, NULL);
+
+ equal = (b1->len == b2->len &&
+ memcmp (b1->data, b2->data, b1->len) == 0);
+
+ g_byte_array_unref (b1);
+ g_byte_array_unref (b2);
+
+ return equal;
+}