From 083df7e73775d8f81e380f12f6d63c2012a6b617 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Sat, 11 Mar 2017 23:06:34 +0100 Subject: Move GPG initialization to gpgme-vala --- gpgme-vala/src/gpgme_helper.vala | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gpgme-vala/src/gpgme_helper.vala') diff --git a/gpgme-vala/src/gpgme_helper.vala b/gpgme-vala/src/gpgme_helper.vala index 2a27ba3e..9efa2b4c 100644 --- a/gpgme-vala/src/gpgme_helper.vala +++ b/gpgme-vala/src/gpgme_helper.vala @@ -3,7 +3,11 @@ using GPG; namespace GPGHelper { +private static bool initialized = false; + public static string encrypt_armor(string plain, Key[] keys, EncryptFlags flags) throws GLib.Error { + initialize(); + global_mutex.lock(); Data plain_data = Data.create_from_memory(plain.data, false); Context context = Context.create(); @@ -14,6 +18,8 @@ public static string encrypt_armor(string plain, Key[] keys, EncryptFlags flags) } public static string decrypt(string encr) throws GLib.Error { + initialize(); + global_mutex.lock(); Data enc_data = Data.create_from_memory(encr.data, false); Context context = Context.create(); @@ -23,6 +29,8 @@ public static string decrypt(string encr) throws GLib.Error { } public static string sign(string plain, SigMode mode) throws GLib.Error { + initialize(); + global_mutex.lock(); Data plain_data = Data.create_from_memory(plain.data, false); Context context = Context.create(); @@ -32,6 +40,8 @@ public static string sign(string plain, SigMode mode) throws GLib.Error { } public static string? get_sign_key(string signature, string? text) throws GLib.Error { + initialize(); + global_mutex.lock(); Data sig_data = Data.create_from_memory(signature.data, false); Data text_data; @@ -49,6 +59,8 @@ public static string? get_sign_key(string signature, string? text) throws GLib.E } public static Gee.List get_keylist(string? pattern = null, bool secret_only = false) throws GLib.Error { + initialize(); + Gee.List keys = new ArrayList(); Context context = Context.create(); context.op_keylist_start(pattern, secret_only ? 1 : 0); @@ -64,6 +76,8 @@ public static Gee.List get_keylist(string? pattern = null, bool secret_only } public static Key? get_public_key(string sig) throws GLib.Error { + initialize(); + global_mutex.lock(); Context context = Context.create(); Key key = context.get_key(sig, false); @@ -72,6 +86,8 @@ public static Key? get_public_key(string sig) throws GLib.Error { } private static string get_string_from_data(Data data) { + initialize(); + data.seek(0); uint8[] buf = new uint8[256]; ssize_t? len = null; @@ -87,4 +103,11 @@ private static string get_string_from_data(Data data) { return res; } +private static void initialize() { + if (!initialized) { + check_version(); + initialized = true; + } +} + } \ No newline at end of file -- cgit v1.2.3-54-g00ecf