File: gnutls_x509_crt_get_pk_oid

package info (click to toggle)
gnutls28 3.8.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 81,572 kB
  • sloc: ansic: 390,000; asm: 117,804; sh: 18,712; makefile: 6,754; yacc: 1,858; python: 1,399; cpp: 1,243; perl: 995; sed: 16
file content (20 lines) | stat: -rw-r--r-- 607 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_pk_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 public key algorithm
on that certificate. This is function
is useful in the case @code{gnutls_x509_crt_get_pk_algorithm()} 
returned @code{GNUTLS_PK_UNKNOWN} .

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

@strong{Since:} 3.5.0
@end deftypefun