blob: ae4f96de66df1a0008fea9646b20a7899bb0851c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* See LICENSE file for copyright and license details. */
#include "internal.h"
gpgme_error_t
liberror_gpgme_op_decrypt_ext_start(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_start(ctx, flags, cipher, plain);
if (ret)
liberror_gpgme_set_error("gpgme_op_decrypt_ext_start", ret);
return ret;
}
|