Blame doc/functions/gnutls_x509_crq_get_pk_algorithm

Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
Packit aea12f
@deftypefun {int} {gnutls_x509_crq_get_pk_algorithm} (gnutls_x509_crq_t @var{crq}, unsigned int * @var{bits})
Packit aea12f
@var{crq}: should contain a @code{gnutls_x509_crq_t}  type
Packit aea12f
Packit aea12f
@var{bits}: if bits is non-@code{NULL}  it will hold the size of the parameters' in bits
Packit aea12f
Packit aea12f
This function will return the public key algorithm of a PKCS@code{10} 
Packit aea12f
certificate request.
Packit aea12f
Packit aea12f
If bits is non-@code{NULL} , it should have enough size to hold the
Packit aea12f
parameters size in bits.  For RSA the bits returned is the modulus.
Packit aea12f
For DSA the bits returned are of the public exponent.
Packit aea12f
Packit aea12f
@strong{Returns:} a member of the @code{gnutls_pk_algorithm_t}  enumeration on
Packit aea12f
success, or a negative error code on error.
Packit aea12f
@end deftypefun