Blame doc/functions/gnutls_ocsp_resp_get_responder

Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
@deftypefun {int} {gnutls_ocsp_resp_get_responder} (gnutls_ocsp_resp_const_t @var{resp}, gnutls_datum_t * @var{dn})
Packit Service 4684c1
@var{resp}: should contain a @code{gnutls_ocsp_resp_t}  type
Packit Service 4684c1
Packit Service 4684c1
@var{dn}: newly allocated buffer with name
Packit Service 4684c1
Packit Service 4684c1
This function will extract the name of the Basic OCSP Response in
Packit Service 4684c1
the provided buffer. The name will be in the form
Packit Service 4684c1
"C=xxxx,O=yyyy,CN=zzzz" as described in RFC2253. The output string
Packit Service 4684c1
will be ASCII or UTF-8 encoded, depending on the certificate data.
Packit Service 4684c1
Packit Service 4684c1
If the responder ID is not a name but a hash, this function
Packit Service 4684c1
will return zero and the  @code{dn} elements will be set to @code{NULL} .
Packit Service 4684c1
Packit Service 4684c1
The caller needs to deallocate memory by calling @code{gnutls_free()}  on
Packit Service 4684c1
 @code{dn} ->data.
Packit Service 4684c1
Packit Service 4684c1
This function does not output a fully RFC4514 compliant string, if
Packit Service 4684c1
that is required see @code{gnutls_ocsp_resp_get_responder2()} .
Packit Service 4684c1
Packit Service 4684c1
@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS}  (0) is returned, otherwise a
Packit Service 4684c1
negative error code is returned. When no data exist it will
Packit Service 4684c1
return success and set  @code{dn} elements to zero.
Packit Service 4684c1
@end deftypefun