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/manpages/dane_verify_crt_raw.3 | |
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/manpages/dane_verify_crt_raw.3')
-rw-r--r-- | doc/manpages/dane_verify_crt_raw.3 | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/doc/manpages/dane_verify_crt_raw.3 b/doc/manpages/dane_verify_crt_raw.3 new file mode 100644 index 0000000..849ce27 --- /dev/null +++ b/doc/manpages/dane_verify_crt_raw.3 @@ -0,0 +1,57 @@ +.\" DO NOT MODIFY THIS FILE! It was generated by gdoc. +.TH "dane_verify_crt_raw" 3 "3.7.9" "gnutls" "gnutls" +.SH NAME +dane_verify_crt_raw \- API function +.SH SYNOPSIS +.B #include <gnutls/dane.h> +.sp +.BI "int dane_verify_crt_raw(dane_state_t " s ", const gnutls_datum_t * " chain ", unsigned " chain_size ", gnutls_certificate_type_t " chain_type ", dane_query_t " r ", unsigned int " sflags ", unsigned int " vflags ", unsigned int * " verify ");" +.SH ARGUMENTS +.IP "dane_state_t s" 12 +A DANE state structure (may be NULL) +.IP "const gnutls_datum_t * chain" 12 +A certificate chain +.IP "unsigned chain_size" 12 +The size of the chain +.IP "gnutls_certificate_type_t chain_type" 12 +The type of the certificate chain +.IP "dane_query_t r" 12 +DANE data to check against +.IP "unsigned int sflags" 12 +Flags for the initialization of \fIs\fP (if NULL) +.IP "unsigned int vflags" 12 +Verification flags; an OR'ed list of \fBdane_verify_flags_t\fP. +.IP "unsigned int * verify" 12 +An OR'ed list of \fBdane_verify_status_t\fP. +.SH "DESCRIPTION" +This is the low\-level function of \fBdane_verify_crt()\fP. See the +high level function for documentation. + +This function does not perform any resolving, it utilizes +cached entries from \fIr\fP . +.SH "RETURNS" +a negative error code on error and \fBDANE_E_SUCCESS\fP (0) +when the DANE entries were successfully parsed, irrespective of +whether they were verified (see \fIverify\fP for that information). If +no usable entries were encountered \fBDANE_E_REQUESTED_DATA_NOT_AVAILABLE\fP +will be returned. +.SH "REPORTING BUGS" +Report bugs to <bugs@gnutls.org>. +.br +Home page: https://www.gnutls.org + +.SH COPYRIGHT +Copyright \(co 2001- Free Software Foundation, Inc., and others. +.br +Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. +.SH "SEE ALSO" +The full documentation for +.B gnutls +is maintained as a Texinfo manual. +If the /usr/share/doc/gnutls/ +directory does not contain the HTML form visit +.B +.IP https://www.gnutls.org/manual/ +.PP |