diff options
Diffstat (limited to 'op_encrypt_sign_ext.c')
-rw-r--r-- | op_encrypt_sign_ext.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/op_encrypt_sign_ext.c b/op_encrypt_sign_ext.c new file mode 100644 index 0000000..14f8cd8 --- /dev/null +++ b/op_encrypt_sign_ext.c @@ -0,0 +1,13 @@ +/* See LICENSE file for copyright and license details. */ +#include "internal.h" + + +gpgme_error_t +liberror_gpgme_op_encrypt_sign_ext(gpgme_ctx_t ctx, gpgme_key_t recp[], const char *recpstring, + gpgme_encrypt_flags_t flags, gpgme_data_t plain, gpgme_data_t cipher) +{ + gpgme_error_t ret = gpgme_op_encrypt_sign_ext(ctx, recp, recpstring, flags, plain, cipher); + if (ret) + liberror_gpgme_set_error("gpgme_op_encrypt_sign_ext", ret); + return ret; +} |