File: gnutls_x509_crt_get_signature_oid

package info (click to toggle)
gnutls28 3.8.9-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 83,872 kB
  • sloc: ansic: 388,071; asm: 117,804; sh: 18,477; makefile: 6,732; yacc: 1,858; python: 1,399; cpp: 1,243; perl: 995; sed: 16
file content (20 lines) | stat: -rw-r--r-- 646 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20




@deftypefun {int} {gnutls_x509_crt_get_signature_oid} (gnutls_x509_crt_t @var{cert}, char * @var{oid}, size_t * @var{oid_size})
@var{cert}: should contain a @code{gnutls_x509_crt_t}  type

@var{oid}: a pointer to a buffer to hold the OID (may be null)

@var{oid_size}: initially holds the size of  @code{oid} 

This function will return the OID of the signature algorithm
that has been used to sign this certificate. This is function
is useful in the case @code{gnutls_x509_crt_get_signature_algorithm()} 
returned @code{GNUTLS_SIGN_UNKNOWN} .

@strong{Returns:} zero or a negative error code on error.

@strong{Since:} 3.5.0
@end deftypefun