summaryrefslogtreecommitdiff
path: root/crypto/asn1/t_x509a.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-11-26 00:27:07 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-11-26 00:27:07 +0000
commitd4cec6a13dfb2c1d1ddf66dff499aaf21bbbf002 (patch)
tree4ee543a5413ad1df09e71f97cb69dfe2b48c12da /crypto/asn1/t_x509a.c
parent1126239111a89c52d301c3439d20dc0fd61649c2 (diff)
downloadopenssl-new-d4cec6a13dfb2c1d1ddf66dff499aaf21bbbf002.tar.gz
New options to the -verify program which can be used for chain verification.
Extend the X509_PURPOSE structure to include shortnames for purposed and default trust ids. Still need some extendable trust checking code and integration with the SSL and S/MIME code.
Diffstat (limited to 'crypto/asn1/t_x509a.c')
-rw-r--r--crypto/asn1/t_x509a.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/crypto/asn1/t_x509a.c b/crypto/asn1/t_x509a.c
index 26d03f5f9b..ebd62f6989 100644
--- a/crypto/asn1/t_x509a.c
+++ b/crypto/asn1/t_x509a.c
@@ -66,11 +66,11 @@
*/
static BIT_STRING_BITNAME tbits[] = {
-{X509_TRUST_ALL, "All Purposes", "all"},
-{X509_TRUST_SSL_CLIENT, "SSL client", "sslclient"},
-{X509_TRUST_SSL_SERVER, "SSL server", "sslserver"},
-{X509_TRUST_EMAIL, "S/MIME email", "email"},
-{X509_TRUST_OBJECT_SIGN, "Object Signing", "objsign"},
+{X509_TRUST_BIT_ALL, "All Purposes", "all"},
+{X509_TRUST_BIT_SSL_CLIENT, "SSL client", "sslclient"},
+{X509_TRUST_BIT_SSL_SERVER, "SSL server", "sslserver"},
+{X509_TRUST_BIT_EMAIL, "S/MIME email", "email"},
+{X509_TRUST_BIT_OBJECT_SIGN, "Object Signing", "objsign"},
{-1, NULL, NULL}
};