summaryrefslogtreecommitdiffstats
path: root/panels/sharing/cc-tls-certificate.h
blob: 9b9a8d501d83aebebfde9f1c5c2f8281df9ecc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* cc-tls-certificate.h
 *
 * Copyright 2018 Christian Hergert <chergert@redhat.com>
 *
 * This file is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 3 of the
 * License, or (at your option) any later version.
 *
 * This file is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * SPDX-License-Identifier: LGPL-3.0-or-later
 */

#pragma once

#include <gio/gio.h>

G_BEGIN_DECLS

gboolean         bonsai_is_tls_hash                                       (const gchar          *hash);
GTlsCertificate *bonsai_tls_certificate_new_generate                      (const gchar          *public_key_path,
                                                                           const gchar          *private_key_path,
                                                                           const gchar          *c,
                                                                           const gchar          *cn,
                                                                           GCancellable         *cancellable,
                                                                           GError              **error);
void             bonsai_tls_certificate_new_generate_async                (const gchar          *public_key_path,
                                                                           const gchar          *private_key_path,
                                                                           const gchar          *c,
                                                                           const gchar          *cn,
                                                                           GCancellable         *cancellable,
                                                                           GAsyncReadyCallback   callback,
                                                                           gpointer              user_data);
GTlsCertificate *bonsai_tls_certificate_new_generate_finish               (GAsyncResult         *result,
                                                                           GError              **error);
gchar           *bonsai_tls_certificate_get_hash                          (GTlsCertificate      *cert);
GTlsCertificate *bonsai_tls_certificate_new_from_files_or_generate        (const gchar          *public_key_path,
                                                                           const gchar          *private_key_path,
                                                                           const gchar          *c,
                                                                           const gchar          *cn,
                                                                           GCancellable         *cancellable,
                                                                           GError              **error);
void             bonsai_tls_certificate_new_from_files_or_generate_async  (const gchar          *public_key_path,
                                                                           const gchar          *private_key_path,
                                                                           const gchar          *c,
                                                                           const gchar          *cn,
                                                                           GCancellable         *cancellable,
                                                                           GAsyncReadyCallback   callback,
                                                                           gpointer              user_data);
GTlsCertificate *bonsai_tls_certificate_new_from_files_or_generate_finish (GAsyncResult         *result,
                                                                           GError              **error);
GTlsCertificate *bonsai_tls_certificate_new_for_user                      (GCancellable         *cancellable,
                                                                           GError              **error);

G_END_DECLS