1gnutls_pkcs11_obj_get_info(3) gnutls gnutls_pkcs11_obj_get_info(3)
2
3
4
6 gnutls_pkcs11_obj_get_info - API function
7
9 #include <gnutls/pkcs11.h>
10
11 int gnutls_pkcs11_obj_get_info(gnutls_pkcs11_obj_t obj,
12 gnutls_pkcs11_obj_info_t itype, void * output, size_t * output_size);
13
15 gnutls_pkcs11_obj_t obj
16 should contain a gnutls_pkcs11_obj_t type
17
18 gnutls_pkcs11_obj_info_t itype
19 Denotes the type of information requested
20
21 void * output
22 where output will be stored
23
24 size_t * output_size
25 contains the maximum size of the output buffer and will be
26 overwritten with the actual size.
27
29 This function will return information about the PKCS11 certificate such
30 as the label, id as well as token information where the key is stored.
31
32 When output is text, a null terminated string is written to output and
33 its string length is written to output_size (without null terminator).
34 If the buffer is too small, output_size will contain the expected buf‐
35 fer size (with null terminator for text) and return GNUTLS_E_SHORT_MEM‐
36 ORY_BUFFER.
37
38 In versions previously to 3.6.0 this function included the null termi‐
39 nator to output_size . After 3.6.0 the output size doesn't include the
40 terminator character.
41
43 GNUTLS_E_SUCCESS (0) on success or a negative error code on error.
44
46 2.12.0
47
49 Report bugs to <bugs@gnutls.org>.
50 Home page: https://www.gnutls.org
51
52
54 Copyright © 2001-2019 Free Software Foundation, Inc., and others.
55 Copying and distribution of this file, with or without modification,
56 are permitted in any medium without royalty provided the copyright
57 notice and this notice are preserved.
58
60 The full documentation for gnutls is maintained as a Texinfo manual.
61 If the /usr/share/doc/gnutls/ directory does not contain the HTML form
62 visit
63
64 https://www.gnutls.org/manual/
65
66gnutls 3.6.8 gnutls_pkcs11_obj_get_info(3)