aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/include
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2016-03-10 15:04:46 +0000
committerDr. Stephen Henson <steve@openssl.org>2016-03-11 17:40:47 +0000
commita6eb1ce6a989d01bb00e9749789b690744be506c (patch)
treec4071e00c47ba6c7fc91a50d26d36052edf134d8 /crypto/include
parentbb26842d1c8f99c1267b45361a2fc76822c0f913 (diff)
downloadopenssl-a6eb1ce6a989d01bb00e9749789b690744be506c.tar.gz
Make X509_SIG opaque.
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'crypto/include')
-rw-r--r--crypto/include/internal/x509_int.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/include/internal/x509_int.h b/crypto/include/internal/x509_int.h
index eec024c95d..fc032ae07d 100644
--- a/crypto/include/internal/x509_int.h
+++ b/crypto/include/internal/x509_int.h
@@ -225,3 +225,8 @@ struct pkcs8_priv_key_info_st {
ASN1_OCTET_STRING *pkey;
STACK_OF(X509_ATTRIBUTE) *attributes;
};
+
+struct X509_sig_st {
+ X509_ALGOR *algor;
+ ASN1_OCTET_STRING *digest;
+};