1gnutls_x509_crt_get_pk_algorithm(3) gnutls gnutls_x509_crt_get_pk_algorithm(3)
2
3
4
6 gnutls_x509_crt_get_pk_algorithm - This function returns the certifi‐
7 cate's PublicKey algorithm
8
10 #include <gnutls/x509.h>
11
12 int gnutls_x509_crt_get_pk_algorithm(gnutls_x509_crt_t cert, unsigned
13 int * bits);
14
16 gnutls_x509_crt_t cert
17 should contain a gnutls_x509_crt_t structure
18
19 unsigned int * bits
20 if bits is non null it will hold the size of the parame‐
21 ters' in bits
22
24 This function will return the public key algorithm of an X.509 certifi‐
25 cate.
26
27 If bits is non null, it should have enough size to hold the parameters
28 size in bits. For RSA the bits returned is the modulus. For DSA the
29 bits returned are of the public exponent.
30
31 Returns a member of the gnutls_pk_algorithm_t enumeration on success,
32 or a negative value on error.
33
35 Report bugs to <bug-gnutls@gnu.org>.
36
38 Copyright © 2006 Free Software Foundation.
39 Permission is granted to make and distribute verbatim copies of this
40 manual provided the copyright notice and this permission notice are
41 preserved on all copies.
42
44 The full documentation for gnutls is maintained as a Texinfo manual.
45 If the info and gnutls programs are properly installed at your site,
46 the command
47
48 info gnutls
49
50 should give you access to the complete manual.
51
52
53
54gnutls 1.6.3 gnutls_x509_crt_get_pk_algorithm(3)