about summary refs log tree commit diff
path: root/src/libnm-core-impl/nm-crypto-impl.h
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2021-10-01 23:06:08 +0200
committerMichael Biebl <biebl@debian.org>2021-10-01 23:06:08 +0200
commita3349a04ac4c38885cddefec8515c979d03f9327 (patch)
treed3bbee695aa048cb4ec252e7d63515c8376f9006 /src/libnm-core-impl/nm-crypto-impl.h
parent2d5b58e374d67f60880c7689e80c7745aeef3f62 (diff)
parente74c568b07b50b97873fb4ee1d776dedefbd54d6 (diff)
Update upstream source from tag 'upstream/1.32.12'
Update to upstream version '1.32.12'
with Debian dir 6fabefa95c7dcf83371a78eb2c47013a81ff8d86
Diffstat (limited to 'src/libnm-core-impl/nm-crypto-impl.h')
-rw-r--r--src/libnm-core-impl/nm-crypto-impl.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/libnm-core-impl/nm-crypto-impl.h b/src/libnm-core-impl/nm-crypto-impl.h
new file mode 100644
index 00000000..0fd8f194
--- /dev/null
+++ b/src/libnm-core-impl/nm-crypto-impl.h
@@ -0,0 +1,49 @@
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
+/*
+ * Dan Williams <dcbw@redhat.com>
+ * Copyright (C) 2007 - 2018 Red Hat, Inc.
+ */
+
+#ifndef __NM_CRYPTO_IMPL_H__
+#define __NM_CRYPTO_IMPL_H__
+
+#include "nm-crypto.h"
+
+gboolean _nm_crypto_init(GError **error);
+
+gboolean _nm_crypto_randomize(void *buffer, gsize buffer_len, GError **error);
+
+gboolean _nm_crypto_verify_x509(const guint8 *data, gsize len, GError **error);
+
+gboolean
+_nm_crypto_verify_pkcs12(const guint8 *data, gsize data_len, const char *password, GError **error);
+
+gboolean _nm_crypto_verify_pkcs8(const guint8 *data,
+                                 gsize         data_len,
+                                 gboolean      is_encrypted,
+                                 const char *  password,
+                                 GError **     error);
+
+/*****************************************************************************/
+
+guint8 *_nmtst_crypto_encrypt(NMCryptoCipherType cipher,
+                              const guint8 *     data,
+                              gsize              data_len,
+                              const guint8 *     iv,
+                              gsize              iv_len,
+                              const guint8 *     key,
+                              gsize              key_len,
+                              gsize *            out_len,
+                              GError **          error);
+
+guint8 *_nmtst_crypto_decrypt(NMCryptoCipherType cipher,
+                              const guint8 *     data,
+                              gsize              data_len,
+                              const guint8 *     iv,
+                              gsize              iv_len,
+                              const guint8 *     key,
+                              gsize              key_len,
+                              gsize *            out_len,
+                              GError **          error);
+
+#endif /* __NM_CRYPTO_IMPL_H__ */