blob: 7221ab3d7fc0fa54a9ae053e757f9812172c3e1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
@deftypefun {int} {gnutls_pubkey_get_spki} (gnutls_pubkey_t @var{pubkey}, gnutls_x509_spki_t @var{spki}, unsigned int @var{flags})
@var{pubkey}: a public key of type @code{gnutls_pubkey_t}
@var{spki}: a SubjectPublicKeyInfo structure of type @code{gnutls_pubkey_spki_t}
@var{flags}: must be zero
This function will return the public key information if available.
The provided @code{spki} must be initialized.
@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise a
negative error value.
@strong{Since:} 3.6.0
@end deftypefun
|