gtlscertificate.h 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* GIO - GLib Input, Output and Streaming 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. #ifndef __G_TLS_CERTIFICATE_H__
  19. #define __G_TLS_CERTIFICATE_H__
  20. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  21. #error "Only <gio/gio.h> can be included directly."
  22. #endif
  23. #include <gio/giotypes.h>
  24. G_BEGIN_DECLS
  25. #define G_TYPE_TLS_CERTIFICATE (g_tls_certificate_get_type ())
  26. #define G_TLS_CERTIFICATE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_CERTIFICATE, GTlsCertificate))
  27. #define G_TLS_CERTIFICATE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TLS_CERTIFICATE, GTlsCertificateClass))
  28. #define G_IS_TLS_CERTIFICATE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_CERTIFICATE))
  29. #define G_IS_TLS_CERTIFICATE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TLS_CERTIFICATE))
  30. #define G_TLS_CERTIFICATE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), G_TYPE_TLS_CERTIFICATE, GTlsCertificateClass))
  31. typedef struct _GTlsCertificateClass GTlsCertificateClass;
  32. typedef struct _GTlsCertificatePrivate GTlsCertificatePrivate;
  33. struct _GTlsCertificate {
  34. GObject parent_instance;
  35. GTlsCertificatePrivate *priv;
  36. };
  37. struct _GTlsCertificateClass
  38. {
  39. GObjectClass parent_class;
  40. GTlsCertificateFlags (* verify) (GTlsCertificate *cert,
  41. GSocketConnectable *identity,
  42. GTlsCertificate *trusted_ca);
  43. /*< private >*/
  44. /* Padding for future expansion */
  45. gpointer padding[8];
  46. };
  47. GLIB_AVAILABLE_IN_ALL
  48. GType g_tls_certificate_get_type (void) G_GNUC_CONST;
  49. GLIB_AVAILABLE_IN_ALL
  50. GTlsCertificate *g_tls_certificate_new_from_pem (const gchar *data,
  51. gssize length,
  52. GError **error);
  53. GLIB_AVAILABLE_IN_ALL
  54. GTlsCertificate *g_tls_certificate_new_from_file (const gchar *file,
  55. GError **error);
  56. GLIB_AVAILABLE_IN_ALL
  57. GTlsCertificate *g_tls_certificate_new_from_files (const gchar *cert_file,
  58. const gchar *key_file,
  59. GError **error);
  60. GLIB_AVAILABLE_IN_ALL
  61. GList *g_tls_certificate_list_new_from_file (const gchar *file,
  62. GError **error);
  63. GLIB_AVAILABLE_IN_ALL
  64. GTlsCertificate *g_tls_certificate_get_issuer (GTlsCertificate *cert);
  65. GLIB_AVAILABLE_IN_ALL
  66. GTlsCertificateFlags g_tls_certificate_verify (GTlsCertificate *cert,
  67. GSocketConnectable *identity,
  68. GTlsCertificate *trusted_ca);
  69. GLIB_AVAILABLE_IN_2_34
  70. gboolean g_tls_certificate_is_same (GTlsCertificate *cert_one,
  71. GTlsCertificate *cert_two);
  72. G_END_DECLS
  73. #endif /* __G_TLS_CERTIFICATE_H__ */