blob: 2ef3f5442907fa8dc9d29d2a35296ed3a06a9bca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@deftypefun {void} {gnutls_x509_privkey_set_flags} (gnutls_x509_privkey_t @var{key}, unsigned int @var{flags})
@var{key}: A key of type @code{gnutls_x509_privkey_t}
@var{flags}: flags from the @code{gnutls_privkey_flags}
This function will set flags for the specified private key, after
it is generated. Currently this is useful for the @code{GNUTLS_PRIVKEY_FLAG_EXPORT_COMPAT}
to allow exporting a "provable" private key in backwards compatible way.
@strong{Since:} 3.5.0
@end deftypefun
|