aboutsummaryrefslogtreecommitdiffstats
path: root/op_decrypt_ext.c
diff options
context:
space:
mode:
Diffstat (limited to 'op_decrypt_ext.c')
-rw-r--r--op_decrypt_ext.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/op_decrypt_ext.c b/op_decrypt_ext.c
new file mode 100644
index 0000000..7e54806
--- /dev/null
+++ b/op_decrypt_ext.c
@@ -0,0 +1,12 @@
+/* See LICENSE file for copyright and license details. */
+#include "internal.h"
+
+
+gpgme_error_t
+liberror_gpgme_op_decrypt_ext(gpgme_ctx_t ctx, gpgme_decrypt_flags_t flags, gpgme_data_t cipher, gpgme_data_t plain)
+{
+ gpgme_error_t ret = gpgme_op_decrypt_ext(ctx, flags, cipher, plain);
+ if (ret)
+ liberror_gpgme_set_error("gpgme_op_decrypt_ext", ret);
+ return ret;
+}