aboutsummaryrefslogtreecommitdiff
path: root/crypto/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-09-17 14:44:19 +0100
committerDr. Stephen Henson <steve@openssl.org>2015-09-17 17:18:59 +0100
commit6e63c142f269c738e3820203ecec6fe74ad4efa0 (patch)
treebd0dbaccea262cbcf7379b5cb5d5745e94360901 /crypto/include
parent568b80206a0a59e4e33abf569b9bef5f8564b36b (diff)
downloadopenssl-6e63c142f269c738e3820203ecec6fe74ad4efa0.zip
openssl-6e63c142f269c738e3820203ecec6fe74ad4efa0.tar.gz
openssl-6e63c142f269c738e3820203ecec6fe74ad4efa0.tar.bz2
Embed various signature algorithms.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/x509_int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/include/internal/x509_int.h b/crypto/include/internal/x509_int.h
index 96c15e3..d9147ae 100644
--- a/crypto/include/internal/x509_int.h
+++ b/crypto/include/internal/x509_int.h
@@ -101,14 +101,14 @@ struct X509_req_info_st {
struct X509_req_st {
X509_REQ_INFO req_info;
- X509_ALGOR *sig_alg;
+ X509_ALGOR sig_alg;
ASN1_BIT_STRING *signature;
int references;
};
struct X509_crl_info_st {
ASN1_INTEGER *version;
- X509_ALGOR *sig_alg;
+ X509_ALGOR sig_alg;
X509_NAME *issuer;
ASN1_TIME *lastUpdate;
ASN1_TIME *nextUpdate;
@@ -120,7 +120,7 @@ struct X509_crl_info_st {
struct X509_crl_st {
/* actual signature */
X509_CRL_INFO crl;
- X509_ALGOR *sig_alg;
+ X509_ALGOR sig_alg;
ASN1_BIT_STRING *signature;
int references;
int flags;