[kdbus] KDBUS_ITEM_PAYLOAD_OFF items are (once again) relative to msg header
[platform/upstream/glib.git] / gio / gtlscertificate.c
1 /* GIO - GLib Input, Output and Certificateing Library
2  *
3  * Copyright (C) 2010 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "config.h"
20
21 #include "gtlscertificate.h"
22
23 #include <string.h>
24 #include "ginitable.h"
25 #include "gtlsbackend.h"
26 #include "gtlsconnection.h"
27 #include "glibintl.h"
28
29 /**
30  * SECTION:gtlscertificate
31  * @title: GTlsCertificate
32  * @short_description: TLS certificate
33  * @include: gio/gio.h
34  * @see_also: #GTlsConnection
35  *
36  * A certificate used for TLS authentication and encryption.
37  * This can represent either a certificate only (eg, the certificate
38  * received by a client from a server), or the combination of
39  * a certificate and a private key (which is needed when acting as a
40  * #GTlsServerConnection).
41  *
42  * Since: 2.28
43  */
44
45 /**
46  * GTlsCertificate:
47  *
48  * Abstract base class for TLS certificate types.
49  *
50  * Since: 2.28
51  */
52
53 G_DEFINE_ABSTRACT_TYPE (GTlsCertificate, g_tls_certificate, G_TYPE_OBJECT);
54
55 enum
56 {
57   PROP_0,
58
59   PROP_CERTIFICATE,
60   PROP_CERTIFICATE_PEM,
61   PROP_PRIVATE_KEY,
62   PROP_PRIVATE_KEY_PEM,
63   PROP_ISSUER
64 };
65
66 static void
67 g_tls_certificate_init (GTlsCertificate *cert)
68 {
69 }
70
71 static void
72 g_tls_certificate_get_property (GObject    *object,
73                                 guint       prop_id,
74                                 GValue     *value,
75                                 GParamSpec *pspec)
76 {
77   G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
78 }
79
80 static void
81 g_tls_certificate_set_property (GObject      *object,
82                                 guint         prop_id,
83                                 const GValue *value,
84                                 GParamSpec   *pspec)
85 {
86   G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
87 }
88
89 static void
90 g_tls_certificate_class_init (GTlsCertificateClass *class)
91 {
92   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
93
94   gobject_class->set_property = g_tls_certificate_set_property;
95   gobject_class->get_property = g_tls_certificate_get_property;
96
97   /**
98    * GTlsCertificate:certificate:
99    *
100    * The DER (binary) encoded representation of the certificate.
101    * This property and the #GTlsCertificate:certificate-pem property
102    * represent the same data, just in different forms.
103    *
104    * Since: 2.28
105    */
106   g_object_class_install_property (gobject_class, PROP_CERTIFICATE,
107                                    g_param_spec_boxed ("certificate",
108                                                        P_("Certificate"),
109                                                        P_("The DER representation of the certificate"),
110                                                        G_TYPE_BYTE_ARRAY,
111                                                        G_PARAM_READWRITE |
112                                                        G_PARAM_CONSTRUCT_ONLY |
113                                                        G_PARAM_STATIC_STRINGS));
114   /**
115    * GTlsCertificate:certificate-pem:
116    *
117    * The PEM (ASCII) encoded representation of the certificate.
118    * This property and the #GTlsCertificate:certificate
119    * property represent the same data, just in different forms.
120    *
121    * Since: 2.28
122    */
123   g_object_class_install_property (gobject_class, PROP_CERTIFICATE_PEM,
124                                    g_param_spec_string ("certificate-pem",
125                                                         P_("Certificate (PEM)"),
126                                                         P_("The PEM representation of the certificate"),
127                                                         NULL,
128                                                         G_PARAM_READWRITE |
129                                                         G_PARAM_CONSTRUCT_ONLY |
130                                                         G_PARAM_STATIC_STRINGS));
131   /**
132    * GTlsCertificate:private-key:
133    *
134    * The DER (binary) encoded representation of the certificate's
135    * private key, in either PKCS#1 format or unencrypted PKCS#8
136    * format. This property (or the #GTlsCertificate:private-key-pem
137    * property) can be set when constructing a key (eg, from a file),
138    * but cannot be read.
139    *
140    * PKCS#8 format is supported since 2.32; earlier releases only
141    * support PKCS#1. You can use the `openssl rsa`
142    * tool to convert PKCS#8 keys to PKCS#1.
143    *
144    * Since: 2.28
145    */
146   g_object_class_install_property (gobject_class, PROP_PRIVATE_KEY,
147                                    g_param_spec_boxed ("private-key",
148                                                        P_("Private key"),
149                                                        P_("The DER representation of the certificate's private key"),
150                                                        G_TYPE_BYTE_ARRAY,
151                                                        G_PARAM_WRITABLE |
152                                                        G_PARAM_CONSTRUCT_ONLY |
153                                                        G_PARAM_STATIC_STRINGS));
154   /**
155    * GTlsCertificate:private-key-pem:
156    *
157    * The PEM (ASCII) encoded representation of the certificate's
158    * private key in either PKCS#1 format ("`BEGIN RSA PRIVATE
159    * KEY`") or unencrypted PKCS#8 format ("`BEGIN
160    * PRIVATE KEY`"). This property (or the
161    * #GTlsCertificate:private-key property) can be set when
162    * constructing a key (eg, from a file), but cannot be read.
163    *
164    * PKCS#8 format is supported since 2.32; earlier releases only
165    * support PKCS#1. You can use the `openssl rsa`
166    * tool to convert PKCS#8 keys to PKCS#1.
167    *
168    * Since: 2.28
169    */
170   g_object_class_install_property (gobject_class, PROP_PRIVATE_KEY_PEM,
171                                    g_param_spec_string ("private-key-pem",
172                                                         P_("Private key (PEM)"),
173                                                         P_("The PEM representation of the certificate's private key"),
174                                                         NULL,
175                                                         G_PARAM_WRITABLE |
176                                                         G_PARAM_CONSTRUCT_ONLY |
177                                                         G_PARAM_STATIC_STRINGS));
178   /**
179    * GTlsCertificate:issuer:
180    *
181    * A #GTlsCertificate representing the entity that issued this
182    * certificate. If %NULL, this means that the certificate is either
183    * self-signed, or else the certificate of the issuer is not
184    * available.
185    *
186    * Since: 2.28
187    */
188   g_object_class_install_property (gobject_class, PROP_ISSUER,
189                                    g_param_spec_object ("issuer",
190                                                         P_("Issuer"),
191                                                         P_("The certificate for the issuing entity"),
192                                                         G_TYPE_TLS_CERTIFICATE,
193                                                         G_PARAM_READWRITE |
194                                                         G_PARAM_CONSTRUCT_ONLY |
195                                                         G_PARAM_STATIC_STRINGS));
196 }
197
198 static GTlsCertificate *
199 g_tls_certificate_new_internal (const gchar      *certificate_pem,
200                                 const gchar      *private_key_pem,
201                                 GTlsCertificate  *issuer,
202                                 GError          **error)
203 {
204   GObject *cert;
205   GTlsBackend *backend;
206
207   backend = g_tls_backend_get_default ();
208
209   cert = g_initable_new (g_tls_backend_get_certificate_type (backend),
210                          NULL, error,
211                          "certificate-pem", certificate_pem,
212                          "private-key-pem", private_key_pem,
213                          "issuer", issuer,
214                          NULL);
215
216   return G_TLS_CERTIFICATE (cert);
217 }
218
219 #define PEM_CERTIFICATE_HEADER     "-----BEGIN CERTIFICATE-----"
220 #define PEM_CERTIFICATE_FOOTER     "-----END CERTIFICATE-----"
221 #define PEM_PKCS1_PRIVKEY_HEADER   "-----BEGIN RSA PRIVATE KEY-----"
222 #define PEM_PKCS1_PRIVKEY_FOOTER   "-----END RSA PRIVATE KEY-----"
223 #define PEM_PKCS8_PRIVKEY_HEADER   "-----BEGIN PRIVATE KEY-----"
224 #define PEM_PKCS8_PRIVKEY_FOOTER   "-----END PRIVATE KEY-----"
225 #define PEM_PKCS8_ENCRYPTED_HEADER "-----BEGIN ENCRYPTED PRIVATE KEY-----"
226 #define PEM_PKCS8_ENCRYPTED_FOOTER "-----END ENCRYPTED PRIVATE KEY-----"
227
228 static gchar *
229 parse_private_key (const gchar *data,
230                    gsize data_len,
231                    gboolean required,
232                    GError **error)
233 {
234   const gchar *start, *end, *footer;
235
236   start = g_strstr_len (data, data_len, PEM_PKCS1_PRIVKEY_HEADER);
237   if (start)
238     footer = PEM_PKCS1_PRIVKEY_FOOTER;
239   else
240     {
241       start = g_strstr_len (data, data_len, PEM_PKCS8_PRIVKEY_HEADER);
242       if (start)
243         footer = PEM_PKCS8_PRIVKEY_FOOTER;
244       else
245         {
246           start = g_strstr_len (data, data_len, PEM_PKCS8_ENCRYPTED_HEADER);
247           if (start)
248             {
249               g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_BAD_CERTIFICATE,
250                                    _("Cannot decrypt PEM-encoded private key"));
251             }
252           else if (required)
253             {
254               g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_BAD_CERTIFICATE,
255                                    _("No PEM-encoded private key found"));
256             }
257           return NULL;
258         }
259     }
260
261   end = g_strstr_len (start, data_len - (data - start), footer);
262   if (!end)
263     {
264       g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_BAD_CERTIFICATE,
265                            _("Could not parse PEM-encoded private key"));
266       return NULL;
267     }
268   end += strlen (footer);
269   while (*end == '\r' || *end == '\n')
270     end++;
271
272   return g_strndup (start, end - start);
273 }
274
275
276 static gchar *
277 parse_next_pem_certificate (const gchar **data,
278                             const gchar  *data_end,
279                             gboolean      required,
280                             GError      **error)
281 {
282   const gchar *start, *end;
283
284   start = g_strstr_len (*data, data_end - *data, PEM_CERTIFICATE_HEADER);
285   if (!start)
286     {
287       if (required)
288         {
289           g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_BAD_CERTIFICATE,
290                                _("No PEM-encoded certificate found"));
291         }
292       return NULL;
293     }
294
295   end = g_strstr_len (start, data_end - start, PEM_CERTIFICATE_FOOTER);
296   if (!end)
297     {
298       g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_BAD_CERTIFICATE,
299                            _("Could not parse PEM-encoded certificate"));
300       return NULL;
301     }
302   end += strlen (PEM_CERTIFICATE_FOOTER);
303   while (*end == '\r' || *end == '\n')
304     end++;
305
306   *data = end;
307
308   return g_strndup (start, end - start);
309 }
310
311 static GSList *
312 parse_and_create_certificate_list (const gchar  *data,
313                                    gsize         data_len,
314                                    GError      **error)
315 {
316   GSList *first_pem_list = NULL, *pem_list = NULL;
317   gchar *first_pem;
318   const gchar *p, *end;
319
320   p = data;
321   end = p + data_len;
322
323   /* Make sure we can load, at least, one certificate. */
324   first_pem = parse_next_pem_certificate (&p, end, TRUE, error);
325   if (!first_pem)
326     return NULL;
327
328   /* Create a list with a single element. If we load more certificates
329    * below, we will concatenate the two lists at the end. */
330   first_pem_list = g_slist_prepend (first_pem_list, first_pem);
331
332   /* If we read one certificate successfully, let's see if we can read
333    * some more. If not, we will simply return a list with the first one.
334    */
335   while (p && *p)
336     {
337       gchar *cert_pem;
338
339       cert_pem = parse_next_pem_certificate (&p, end, FALSE, NULL);
340       if (!cert_pem)
341         {
342           g_slist_free_full (pem_list, g_free);
343           return first_pem_list;
344         }
345
346       pem_list = g_slist_prepend (pem_list, cert_pem);
347     }
348
349   pem_list = g_slist_concat (pem_list, first_pem_list);
350
351   return pem_list;
352 }
353
354 static GTlsCertificate *
355 create_certificate_chain_from_list (GSList       *pem_list,
356                                     const gchar  *key_pem)
357 {
358   GTlsCertificate *cert = NULL, *issuer = NULL, *root = NULL;
359   GTlsCertificateFlags flags;
360   GSList *pem;
361
362   pem = pem_list;
363   while (pem)
364     {
365       const gchar *key = NULL;
366
367       /* Private key belongs only to the first certificate. */
368       if (!pem->next)
369         key = key_pem;
370
371       /* We assume that the whole file is a certificate chain, so we use
372        * each certificate as the issuer of the next one (list is in
373        * reverse order).
374        */
375       issuer = cert;
376       cert = g_tls_certificate_new_internal (pem->data, key, issuer, NULL);
377       if (issuer)
378         g_object_unref (issuer);
379
380       if (!cert)
381         return NULL;
382
383       /* root will point to the last certificate in the file. */
384       if (!root)
385         root = cert;
386
387       pem = g_slist_next (pem);
388     }
389
390   /* Verify that the certificates form a chain. (We don't care at this
391    * point if there are other problems with it.)
392    */
393   flags = g_tls_certificate_verify (cert, NULL, root);
394   if (flags & G_TLS_CERTIFICATE_UNKNOWN_CA)
395     {
396       /* It wasn't a chain, it's just a bunch of unrelated certs. */
397       g_clear_object (&cert);
398     }
399
400   return cert;
401 }
402
403 static GTlsCertificate *
404 parse_and_create_certificate (const gchar  *data,
405                               gsize         data_len,
406                               const gchar  *key_pem,
407                               GError      **error)
408
409 {
410   GSList *pem_list;
411   GTlsCertificate *cert;
412
413   pem_list = parse_and_create_certificate_list (data, data_len, error);
414   if (!pem_list)
415     return NULL;
416
417   /* We don't pass the error here because, if it fails, we still want to
418    * load and return the first certificate.
419    */
420   cert = create_certificate_chain_from_list (pem_list, key_pem);
421   if (!cert)
422     {
423       GSList *last = NULL;
424
425       /* Get the first certificate (which is the last one as the list is
426        * in reverse order).
427        */
428       last = g_slist_last (pem_list);
429
430       cert = g_tls_certificate_new_internal (last->data, key_pem, NULL, error);
431     }
432
433   g_slist_free_full (pem_list, g_free);
434
435   return cert;
436 }
437
438 /**
439  * g_tls_certificate_new_from_pem:
440  * @data: PEM-encoded certificate data
441  * @length: the length of @data, or -1 if it's 0-terminated.
442  * @error: #GError for error reporting, or %NULL to ignore.
443  *
444  * Creates a #GTlsCertificate from the PEM-encoded data in @data. If
445  * @data includes both a certificate and a private key, then the
446  * returned certificate will include the private key data as well. (See
447  * the #GTlsCertificate:private-key-pem property for information about
448  * supported formats.)
449  *
450  * The returned certificate will be the first certificate found in
451  * @data. As of GLib 2.44, if @data contains more certificates it will
452  * try to load a certificate chain. All certificates will be verified in
453  * the order found (top-level certificate should be the last one in the
454  * file) and the #GTlsCertificate:issuer property of each certificate
455  * will be set accordingly if the verification succeeds. If any
456  * certificate in the chain cannot be verified, the first certificate in
457  * the file will still be returned.
458  *
459  * Returns: the new certificate, or %NULL if @data is invalid
460  *
461  * Since: 2.28
462  */
463 GTlsCertificate *
464 g_tls_certificate_new_from_pem  (const gchar  *data,
465                                  gssize        length,
466                                  GError      **error)
467 {
468   gchar *key_pem;
469   GTlsCertificate *cert;
470
471   g_return_val_if_fail (data != NULL, NULL);
472
473   if (length == -1)
474     length = strlen (data);
475
476   key_pem = parse_private_key (data, length, FALSE, error);
477   if (error && *error)
478     return NULL;
479
480   cert = parse_and_create_certificate (data, length, key_pem, error);
481   g_free (key_pem);
482
483   return cert;
484 }
485
486 /**
487  * g_tls_certificate_new_from_file:
488  * @file: file containing a PEM-encoded certificate to import
489  * @error: #GError for error reporting, or %NULL to ignore.
490  *
491  * Creates a #GTlsCertificate from the PEM-encoded data in @file. The
492  * returned certificate will be the first certificate found in @file. As
493  * of GLib 2.44, if @file contains more certificates it will try to load
494  * a certificate chain. All certificates will be verified in the order
495  * found (top-level certificate should be the last one in the file) and
496  * the #GTlsCertificate:issuer property of each certificate will be set
497  * accordingly if the verification succeeds. If any certificate in the
498  * chain cannot be verified, the first certificate in the file will
499  * still be returned.
500  *
501  * If @file cannot be read or parsed, the function will return %NULL and
502  * set @error. Otherwise, this behaves like
503  * g_tls_certificate_new_from_pem().
504  *
505  * Returns: the new certificate, or %NULL on error
506  *
507  * Since: 2.28
508  */
509 GTlsCertificate *
510 g_tls_certificate_new_from_file (const gchar  *file,
511                                  GError      **error)
512 {
513   GTlsCertificate *cert;
514   gchar *contents;
515   gsize length;
516
517   if (!g_file_get_contents (file, &contents, &length, error))
518     return NULL;
519
520   cert = g_tls_certificate_new_from_pem (contents, length, error);
521   g_free (contents);
522   return cert;
523 }
524
525 /**
526  * g_tls_certificate_new_from_files:
527
528  * @cert_file: file containing one or more PEM-encoded certificates to
529  * import
530  * @key_file: file containing a PEM-encoded private key to import
531  * @error: #GError for error reporting, or %NULL to ignore.
532  *
533  * Creates a #GTlsCertificate from the PEM-encoded data in @cert_file
534  * and @key_file. The returned certificate will be the first certificate
535  * found in @cert_file. As of GLib 2.44, if @cert_file contains more
536  * certificates it will try to load a certificate chain. All
537  * certificates will be verified in the order found (top-level
538  * certificate should be the last one in the file) and the
539  * #GTlsCertificate:issuer property of each certificate will be set
540  * accordingly if the verification succeeds. If any certificate in the
541  * chain cannot be verified, the first certificate in the file will
542  * still be returned.
543  *
544  * If either file cannot be read or parsed, the function will return
545  * %NULL and set @error. Otherwise, this behaves like
546  * g_tls_certificate_new_from_pem().
547  *
548  * Returns: the new certificate, or %NULL on error
549  *
550  * Since: 2.28
551  */
552 GTlsCertificate *
553 g_tls_certificate_new_from_files (const gchar  *cert_file,
554                                   const gchar  *key_file,
555                                   GError      **error)
556 {
557   GTlsCertificate *cert;
558   gchar *cert_data, *key_data;
559   gsize cert_len, key_len;
560   gchar *key_pem;
561
562   if (!g_file_get_contents (key_file, &key_data, &key_len, error))
563     return NULL;
564
565   key_pem = parse_private_key (key_data, key_len, TRUE, error);
566   g_free (key_data);
567   if (!key_pem)
568     return NULL;
569
570   if (!g_file_get_contents (cert_file, &cert_data, &cert_len, error))
571     {
572       g_free (key_pem);
573       return NULL;
574     }
575
576   cert = parse_and_create_certificate (cert_data, cert_len, key_pem, error);
577   g_free (cert_data);
578   g_free (key_pem);
579   return cert;
580 }
581
582 /**
583  * g_tls_certificate_list_new_from_file:
584  * @file: file containing PEM-encoded certificates to import
585  * @error: #GError for error reporting, or %NULL to ignore.
586  *
587  * Creates one or more #GTlsCertificates from the PEM-encoded
588  * data in @file. If @file cannot be read or parsed, the function will
589  * return %NULL and set @error. If @file does not contain any
590  * PEM-encoded certificates, this will return an empty list and not
591  * set @error.
592  *
593  * Returns: (element-type Gio.TlsCertificate) (transfer full): a
594  * #GList containing #GTlsCertificate objects. You must free the list
595  * and its contents when you are done with it.
596  *
597  * Since: 2.28
598  */
599 GList *
600 g_tls_certificate_list_new_from_file (const gchar  *file,
601                                       GError      **error)
602 {
603   GQueue queue = G_QUEUE_INIT;
604   gchar *contents, *end;
605   const gchar *p;
606   gsize length;
607
608   if (!g_file_get_contents (file, &contents, &length, error))
609     return NULL;
610
611   end = contents + length;
612   p = contents;
613   while (p && *p)
614     {
615       gchar *cert_pem;
616       GTlsCertificate *cert = NULL;
617       GError *parse_error = NULL;
618
619       cert_pem = parse_next_pem_certificate (&p, end, FALSE, &parse_error);
620       if (cert_pem)
621         {
622           cert = g_tls_certificate_new_internal (cert_pem, NULL, NULL, &parse_error);
623           g_free (cert_pem);
624         }
625       if (!cert)
626         {
627           if (parse_error)
628             {
629               g_propagate_error (error, parse_error);
630               g_list_free_full (queue.head, g_object_unref);
631               queue.head = NULL;
632             }
633           break;
634         }
635       g_queue_push_tail (&queue, cert);
636     }
637
638   g_free (contents);
639   return queue.head;
640 }
641
642
643 /**
644  * g_tls_certificate_get_issuer:
645  * @cert: a #GTlsCertificate
646  *
647  * Gets the #GTlsCertificate representing @cert's issuer, if known
648  *
649  * Returns: (transfer none): The certificate of @cert's issuer,
650  * or %NULL if @cert is self-signed or signed with an unknown
651  * certificate.
652  *
653  * Since: 2.28
654  */
655 GTlsCertificate *
656 g_tls_certificate_get_issuer (GTlsCertificate  *cert)
657 {
658   GTlsCertificate *issuer;
659
660   g_object_get (G_OBJECT (cert), "issuer", &issuer, NULL);
661   if (issuer)
662     g_object_unref (issuer);
663
664   return issuer;
665 }
666
667 /**
668  * g_tls_certificate_verify:
669  * @cert: a #GTlsCertificate
670  * @identity: (allow-none): the expected peer identity
671  * @trusted_ca: (allow-none): the certificate of a trusted authority
672  *
673  * This verifies @cert and returns a set of #GTlsCertificateFlags
674  * indicating any problems found with it. This can be used to verify a
675  * certificate outside the context of making a connection, or to
676  * check a certificate against a CA that is not part of the system
677  * CA database.
678  *
679  * If @identity is not %NULL, @cert's name(s) will be compared against
680  * it, and %G_TLS_CERTIFICATE_BAD_IDENTITY will be set in the return
681  * value if it does not match. If @identity is %NULL, that bit will
682  * never be set in the return value.
683  *
684  * If @trusted_ca is not %NULL, then @cert (or one of the certificates
685  * in its chain) must be signed by it, or else
686  * %G_TLS_CERTIFICATE_UNKNOWN_CA will be set in the return value. If
687  * @trusted_ca is %NULL, that bit will never be set in the return
688  * value.
689  *
690  * (All other #GTlsCertificateFlags values will always be set or unset
691  * as appropriate.)
692  *
693  * Returns: the appropriate #GTlsCertificateFlags
694  *
695  * Since: 2.28
696  */
697 GTlsCertificateFlags
698 g_tls_certificate_verify (GTlsCertificate     *cert,
699                           GSocketConnectable  *identity,
700                           GTlsCertificate     *trusted_ca)
701 {
702   return G_TLS_CERTIFICATE_GET_CLASS (cert)->verify (cert, identity, trusted_ca);
703 }
704
705 /**
706  * g_tls_certificate_is_same:
707  * @cert_one: first certificate to compare
708  * @cert_two: second certificate to compare
709  *
710  * Check if two #GTlsCertificate objects represent the same certificate.
711  * The raw DER byte data of the two certificates are checked for equality.
712  * This has the effect that two certificates may compare equal even if
713  * their #GTlsCertificate:issuer, #GTlsCertificate:private-key, or
714  * #GTlsCertificate:private-key-pem properties differ.
715  *
716  * Returns: whether the same or not
717  *
718  * Since: 2.34
719  */
720 gboolean
721 g_tls_certificate_is_same (GTlsCertificate     *cert_one,
722                            GTlsCertificate     *cert_two)
723 {
724   GByteArray *b1, *b2;
725   gboolean equal;
726
727   g_return_val_if_fail (G_IS_TLS_CERTIFICATE (cert_one), FALSE);
728   g_return_val_if_fail (G_IS_TLS_CERTIFICATE (cert_two), FALSE);
729
730   g_object_get (cert_one, "certificate", &b1, NULL);
731   g_object_get (cert_two, "certificate", &b2, NULL);
732
733   equal = (b1->len == b2->len &&
734            memcmp (b1->data, b2->data, b1->len) == 0);
735
736   g_byte_array_unref (b1);
737   g_byte_array_unref (b2);
738
739   return equal;
740 }