blob: ff15f4ed4913bdc71003a6f0ec17613e2c1247dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@deftypefun {int} {gnutls_x509_crl_set_number} (gnutls_x509_crl_t @var{crl}, const void * @var{nr}, size_t @var{nr_size})
@var{crl}: a CRL of type @code{gnutls_x509_crl_t}
@var{nr}: The CRL number
@var{nr_size}: Holds the size of the nr field.
This function will set the CRL's number extension. This
is to be used as a unique and monotonic number assigned to
the CRL by the authority.
@strong{Returns:} On success, @code{GNUTLS_E_SUCCESS} (0) is returned, otherwise a
negative error value.
@strong{Since:} 2.8.0
@end deftypefun
|