diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 07:33:12 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 07:33:12 +0000 |
commit | 36082a2fe36ecd800d784ae44c14f1f18c66a7e9 (patch) | |
tree | 6c68e0c0097987aff85a01dabddd34b862309a7c /doc/functions/gnutls_pkcs7_verify | |
parent | Initial commit. (diff) | |
download | gnutls28-36082a2fe36ecd800d784ae44c14f1f18c66a7e9.tar.xz gnutls28-36082a2fe36ecd800d784ae44c14f1f18c66a7e9.zip |
Adding upstream version 3.7.9.upstream/3.7.9upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'doc/functions/gnutls_pkcs7_verify')
-rw-r--r-- | doc/functions/gnutls_pkcs7_verify | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/functions/gnutls_pkcs7_verify b/doc/functions/gnutls_pkcs7_verify new file mode 100644 index 0000000..9b9ba91 --- /dev/null +++ b/doc/functions/gnutls_pkcs7_verify @@ -0,0 +1,31 @@ + + + + +@deftypefun {int} {gnutls_pkcs7_verify} (gnutls_pkcs7_t @var{pkcs7}, gnutls_x509_trust_list_t @var{tl}, gnutls_typed_vdata_st * @var{vdata}, unsigned int @var{vdata_size}, unsigned @var{idx}, const gnutls_datum_t * @var{data}, unsigned @var{flags}) +@var{pkcs7}: should contain a @code{gnutls_pkcs7_t} type + +@var{tl}: A list of trusted certificates + +@var{vdata}: an array of typed data + +@var{vdata_size}: the number of data elements + +@var{idx}: the index of the signature info to check + +@var{data}: The data to be verified or @code{NULL} + +@var{flags}: Zero or an OR list of @code{gnutls_certificate_verify_flags} + +This function will verify the provided data against the signature +present in the SignedData of the PKCS @code{7} structure. If the data +provided are NULL then the data in the encapsulatedContent field +will be used instead. + +@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise a +negative error value. A verification error results to a +@code{GNUTLS_E_PK_SIG_VERIFY_FAILED} and the lack of encapsulated data +to verify to a @code{GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE} . + +@strong{Since:} 3.4.2 +@end deftypefun |