gtlspassword.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2011 Collabora, Ltd.
  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. * Author: Stef Walter <stefw@collabora.co.uk>
  19. */
  20. #ifndef __G_TLS_PASSWORD_H__
  21. #define __G_TLS_PASSWORD_H__
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #include <gio/giotypes.h>
  26. G_BEGIN_DECLS
  27. #define G_TYPE_TLS_PASSWORD (g_tls_password_get_type ())
  28. #define G_TLS_PASSWORD(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_TLS_PASSWORD, GTlsPassword))
  29. #define G_TLS_PASSWORD_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_TLS_PASSWORD, GTlsPasswordClass))
  30. #define G_IS_TLS_PASSWORD(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_TLS_PASSWORD))
  31. #define G_IS_TLS_PASSWORD_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_TLS_PASSWORD))
  32. #define G_TLS_PASSWORD_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_TLS_PASSWORD, GTlsPasswordClass))
  33. typedef struct _GTlsPasswordClass GTlsPasswordClass;
  34. typedef struct _GTlsPasswordPrivate GTlsPasswordPrivate;
  35. struct _GTlsPassword
  36. {
  37. GObject parent_instance;
  38. GTlsPasswordPrivate *priv;
  39. };
  40. /**
  41. * GTlsPasswordClass:
  42. * @get_value: virtual method for g_tls_password_get_value()
  43. * @set_value: virtual method for g_tls_password_set_value()
  44. * @get_default_warning: virtual method for g_tls_password_get_warning() if no
  45. * value has been set using g_tls_password_set_warning()
  46. *
  47. * Class structure for #GTlsPassword.
  48. */
  49. struct _GTlsPasswordClass
  50. {
  51. GObjectClass parent_class;
  52. /* methods */
  53. const guchar * ( *get_value) (GTlsPassword *password,
  54. gsize *length);
  55. void ( *set_value) (GTlsPassword *password,
  56. guchar *value,
  57. gssize length,
  58. GDestroyNotify destroy);
  59. const gchar* ( *get_default_warning) (GTlsPassword *password);
  60. /*< private >*/
  61. /* Padding for future expansion */
  62. gpointer padding[4];
  63. };
  64. GLIB_AVAILABLE_IN_ALL
  65. GType g_tls_password_get_type (void) G_GNUC_CONST;
  66. GLIB_AVAILABLE_IN_ALL
  67. GTlsPassword * g_tls_password_new (GTlsPasswordFlags flags,
  68. const gchar *description);
  69. GLIB_AVAILABLE_IN_ALL
  70. const guchar * g_tls_password_get_value (GTlsPassword *password,
  71. gsize *length);
  72. GLIB_AVAILABLE_IN_ALL
  73. void g_tls_password_set_value (GTlsPassword *password,
  74. const guchar *value,
  75. gssize length);
  76. GLIB_AVAILABLE_IN_ALL
  77. void g_tls_password_set_value_full (GTlsPassword *password,
  78. guchar *value,
  79. gssize length,
  80. GDestroyNotify destroy);
  81. GLIB_AVAILABLE_IN_ALL
  82. GTlsPasswordFlags g_tls_password_get_flags (GTlsPassword *password);
  83. GLIB_AVAILABLE_IN_ALL
  84. void g_tls_password_set_flags (GTlsPassword *password,
  85. GTlsPasswordFlags flags);
  86. GLIB_AVAILABLE_IN_ALL
  87. const gchar* g_tls_password_get_description (GTlsPassword *password);
  88. GLIB_AVAILABLE_IN_ALL
  89. void g_tls_password_set_description (GTlsPassword *password,
  90. const gchar *description);
  91. GLIB_AVAILABLE_IN_ALL
  92. const gchar * g_tls_password_get_warning (GTlsPassword *password);
  93. GLIB_AVAILABLE_IN_ALL
  94. void g_tls_password_set_warning (GTlsPassword *password,
  95. const gchar *warning);
  96. G_END_DECLS
  97. #endif /* __G_TLS_PASSWORD_H__ */