1gnutls_ocsp_resp_get_responder_raw_idg(n3ug)tnlustls_ocsp_resp_get_responder_raw_id(3)
2
3
4
6 gnutls_ocsp_resp_get_responder_raw_id - API function
7
9 #include <gnutls/ocsp.h>
10
11 int gnutls_ocsp_resp_get_responder_raw_id(gnutls_ocsp_resp_const_t
12 resp, unsigned type, gnutls_datum_t * raw);
13
15 gnutls_ocsp_resp_const_t resp
16 should contain a gnutls_ocsp_resp_t type
17
18 unsigned type
19 should be GNUTLS_OCSP_RESP_ID_KEY or GNUTLS_OCSP_RESP_ID_DN
20
21 gnutls_datum_t * raw
22 newly allocated buffer with the raw ID
23
25 This function will extract the raw key (or DN) ID of the Basic OCSP Re‐
26 sponse in the provided buffer. If the responder ID is not a key ID then
27 this function will return GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE.
28
29 The caller needs to deallocate memory by calling gnutls_free() on
30 dn ->data.
31
33 On success, GNUTLS_E_SUCCESS (0) is returned, otherwise a negative er‐
34 ror code is returned.
35
37 Report bugs to <bugs@gnutls.org>.
38 Home page: https://www.gnutls.org
39
40
42 Copyright © 2001- Free Software Foundation, Inc., and others.
43 Copying and distribution of this file, with or without modification,
44 are permitted in any medium without royalty provided the copyright no‐
45 tice and this notice are preserved.
46
48 The full documentation for gnutls is maintained as a Texinfo manual.
49 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
50 visit
51
52 https://www.gnutls.org/manual/
53
54gnutls 3.g7n.u8tls_ocsp_resp_get_responder_raw_id(3)