aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/x509
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-10-13 01:11:56 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-10-13 01:11:56 +0000
commit673b102c5b265bd6c517ac40ab76e1606a243c08 (patch)
treebf23e05bed43e5c523765b8240f721ba4e04dc07 /crypto/x509
parent56a3fec1b12d9a95f9b79ce7918fe619488caa9a (diff)
downloadopenssl-673b102c5b265bd6c517ac40ab76e1606a243c08.tar.gz
Initial support for certificate purpose checking: this will
ultimately lead to certificate chain verification. It is VERY EXPERIMENTAL at present though.
Diffstat (limited to 'crypto/x509')
-rw-r--r--crypto/x509/x509.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/x509/x509.h b/crypto/x509/x509.h
index 36772b57ea..64b07e4786 100644
--- a/crypto/x509/x509.h
+++ b/crypto/x509/x509.h
@@ -239,6 +239,12 @@ typedef struct x509_st
int references;
char *name;
CRYPTO_EX_DATA ex_data;
+ /* These contain copies of various extension values */
+ long ex_pathlen;
+ unsigned long ex_flags;
+ unsigned long ex_kusage;
+ unsigned long ex_xkusage;
+ unsigned long ex_nscert;
} X509;
DECLARE_STACK_OF(X509)