Blame doc/functions/gnutls_x509_crt_get_extension_by_oid

Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
Packit Service 4684c1
@deftypefun {int} {gnutls_x509_crt_get_extension_by_oid} (gnutls_x509_crt_t @var{cert}, const char * @var{oid}, unsigned @var{indx}, void * @var{buf}, size_t * @var{buf_size}, unsigned int * @var{critical})
Packit Service 4684c1
@var{cert}: should contain a @code{gnutls_x509_crt_t}  type
Packit Service 4684c1
Packit Service 4684c1
@var{oid}: holds an Object Identified in null terminated string
Packit Service 4684c1
Packit Service 4684c1
@var{indx}: In case multiple same OIDs exist in the extensions, this specifies which to send. Use (0) to get the first one.
Packit Service 4684c1
Packit Service 4684c1
@var{buf}: a pointer to a structure to hold the name (may be null)
Packit Service 4684c1
Packit Service 4684c1
@var{buf_size}: initially holds the size of  @code{buf} 
Packit Service 4684c1
Packit Service 4684c1
@var{critical}: will be non-zero if the extension is marked as critical
Packit Service 4684c1
Packit Service 4684c1
This function will return the extension specified by the OID in the
Packit Service 4684c1
certificate.  The extensions will be returned as binary data DER
Packit Service 4684c1
encoded, in the provided buffer.
Packit Service 4684c1
Packit Service 4684c1
@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS}  (0) is returned,
Packit Service 4684c1
otherwise a negative error code is returned. If the certificate does not
Packit Service 4684c1
contain the specified extension
Packit Service 4684c1
GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE will be returned.
Packit Service 4684c1
@end deftypefun