Constify X509_certificate_type()

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Dr. Stephen Henson 2016-08-17 14:58:56 +01:00
parent 8adc1cb851
commit 5ebd2fcbc7
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
#include <openssl/objects.h>
#include <openssl/x509.h>
int X509_certificate_type(X509 *x, const EVP_PKEY *pkey)
int X509_certificate_type(const X509 *x, const EVP_PKEY *pkey)
{
const EVP_PKEY *pk;
int ret = 0, i;

View file

@ -639,7 +639,7 @@ const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x);
EVP_PKEY *X509_get0_pubkey(const X509 *x);
EVP_PKEY *X509_get_pubkey(X509 *x);
ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x);
int X509_certificate_type(X509 *x, const EVP_PKEY *pubkey /* optional */ );
int X509_certificate_type(const X509 *x, const EVP_PKEY *pubkey);
long X509_REQ_get_version(const X509_REQ *req);
int X509_REQ_set_version(X509_REQ *x, long version);