~ubuntu-branches/ubuntu/precise/gnutls28/precise

« back to all changes in this revision

Viewing changes to doc/manpages/gnutls_x509_crt_get_subject_unique_id.3

  • Committer: Package Import Robot
  • Author(s): Andreas Metzler
  • Date: 2011-09-20 19:37:06 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20110920193706-a9phjijvddzg3nkl
Tags: 3.0.3-1
* New upstream version. (Includes a fix for #640639)
* Bump shlibs.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
.\" DO NOT MODIFY THIS FILE!  It was generated by gdoc.
2
 
.TH "gnutls_x509_crt_get_subject_unique_id" 3 "3.0.1" "gnutls" "gnutls"
 
2
.TH "gnutls_x509_crt_get_subject_unique_id" 3 "3.0.2" "gnutls" "gnutls"
3
3
.SH NAME
4
4
gnutls_x509_crt_get_subject_unique_id \- API function
5
5
.SH SYNOPSIS
6
6
.B #include <gnutls/x509.h>
7
7
.sp
8
 
.BI "int gnutls_x509_crt_get_subject_unique_id(gnutls_x509_crt_t " crt ", char * " buf ", size_t * " sizeof_buf ");"
 
8
.BI "int gnutls_x509_crt_get_subject_unique_id(gnutls_x509_crt_t " crt ", char * " buf ", size_t * " buf_size ");"
9
9
.SH ARGUMENTS
10
10
.IP "gnutls_x509_crt_t crt" 12
11
11
Holds the certificate
12
12
.IP "char * buf" 12
13
13
user allocated memory buffer, will hold the unique id
14
 
.IP "size_t * sizeof_buf" 12
 
14
.IP "size_t * buf_size" 12
15
15
size of user allocated memory buffer (on input), will hold
16
16
actual size of the unique ID on return.
17
17
.SH "DESCRIPTION"
20
20
 
21
21
If the user allocated memory buffer is not large enough to hold the
22
22
full subjectUniqueID, then a GNUTLS_E_SHORT_MEMORY_BUFFER error will be
23
 
returned, and sizeof_buf will be set to the actual length.
 
23
returned, and buf_size will be set to the actual length.
24
24
.SH "RETURNS"
25
25
\fBGNUTLS_E_SUCCESS\fP on success, otherwise a negative error code.
26
26
.SH "REPORTING BUGS"