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>2022-02-14 19:24:33 +0100
committerMichael Biebl <biebl@debian.org>2022-02-14 19:24:33 +0100
commit95864d59ac5530f59fe277580cc13f44b6de5b64 (patch)
tree617239c0147c38efedf639d325cd56e8c7fb8be9 /src/libnm-core-impl/nm-crypto-impl.h
parent1628eda029ba4dede8d4d45572c6b60367882436 (diff)
parent2f94dba7385fd0e0ef19a06eb4a2fcf6c43d7946 (diff)
Update upstream source from tag 'upstream/1.35.91'
Update to upstream version '1.35.91'
with Debian dir d8c1bf4c615814324dba64d19fe27402339c67f5
Diffstat (limited to 'src/libnm-core-impl/nm-crypto-impl.h')
-rw-r--r--src/libnm-core-impl/nm-crypto-impl.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/libnm-core-impl/nm-crypto-impl.h b/src/libnm-core-impl/nm-crypto-impl.h
index 0fd8f194..61c3f7f8 100644
--- a/src/libnm-core-impl/nm-crypto-impl.h
+++ b/src/libnm-core-impl/nm-crypto-impl.h
@@ -21,29 +21,29 @@ _nm_crypto_verify_pkcs12(const guint8 *data, gsize data_len, const char *passwor
 gboolean _nm_crypto_verify_pkcs8(const guint8 *data,
                                  gsize         data_len,
                                  gboolean      is_encrypted,
-                                 const char *  password,
-                                 GError **     error);
+                                 const char   *password,
+                                 GError      **error);
 
 /*****************************************************************************/
 
 guint8 *_nmtst_crypto_encrypt(NMCryptoCipherType cipher,
-                              const guint8 *     data,
+                              const guint8      *data,
                               gsize              data_len,
-                              const guint8 *     iv,
+                              const guint8      *iv,
                               gsize              iv_len,
-                              const guint8 *     key,
+                              const guint8      *key,
                               gsize              key_len,
-                              gsize *            out_len,
-                              GError **          error);
+                              gsize             *out_len,
+                              GError           **error);
 
 guint8 *_nmtst_crypto_decrypt(NMCryptoCipherType cipher,
-                              const guint8 *     data,
+                              const guint8      *data,
                               gsize              data_len,
-                              const guint8 *     iv,
+                              const guint8      *iv,
                               gsize              iv_len,
-                              const guint8 *     key,
+                              const guint8      *key,
                               gsize              key_len,
-                              gsize *            out_len,
-                              GError **          error);
+                              gsize             *out_len,
+                              GError           **error);
 
 #endif /* __NM_CRYPTO_IMPL_H__ */