diff options
Diffstat (limited to 'doc/functions/gnutls_ocsp_resp_get_nonce')
-rw-r--r-- | doc/functions/gnutls_ocsp_resp_get_nonce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/functions/gnutls_ocsp_resp_get_nonce b/doc/functions/gnutls_ocsp_resp_get_nonce new file mode 100644 index 0000000..e6aaaf1 --- /dev/null +++ b/doc/functions/gnutls_ocsp_resp_get_nonce @@ -0,0 +1,20 @@ + + + + +@deftypefun {int} {gnutls_ocsp_resp_get_nonce} (gnutls_ocsp_resp_const_t @var{resp}, unsigned int * @var{critical}, gnutls_datum_t * @var{nonce}) +@var{resp}: should contain a @code{gnutls_ocsp_resp_t} type + +@var{critical}: whether nonce extension is marked critical + +@var{nonce}: will hold newly allocated buffer with nonce data + +This function will return the Basic OCSP Response nonce extension +data. + +The caller needs to deallocate memory by calling @code{gnutls_free()} on + @code{nonce} ->data. + +@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise a +negative error code is returned. +@end deftypefun |