SmartCard Logon OID

This commit is contained in:
chris2511 2003-08-14 22:42:14 +00:00
parent 82a925a9ff
commit 3124f25981
3 changed files with 10 additions and 2 deletions

View File

@ -491,7 +491,7 @@ signed by this issuer.
and their revokation date.
</itemize>
<sect>Certificate Recokation Lists
<sect>Certificate Revokation Lists
<p>
All certificates are issued for a restricted timeperiod of validity.
However it can happen that a certificate may not be used / gets invalid

View File

@ -5,6 +5,9 @@
char *our_oids[] = {
"1.3.6.1.4.1.311.20.2", "dom", "Domain Controller",
"1.3.6.1.4.1.311.21.1", "MsCaV", "Microsoft CA Version",
#if OPENSSL_VERSION_NUMBER < 0x00907000L
"1.3.6.1.4.1.311.20.2.3", "msUPN", "Microsoft Universal Principal Name",
#endif
NULL };
void initOIDs() {

View File

@ -93,7 +93,12 @@ int NewX509::eku_nid[EKUN_CNT] = {
NID_ipsecTunnel,
NID_ipsecUser,
OBJ_create("1.3.6.1.5.5.8.2.2", "iKEIntermediate",
"IP security end entity")
"IP security end entity"),
#if OPENSSL_VERSION_NUMBER >= 0x00907000L
NID_msSmartcardLogin
#else
OBJ_create("1.3.6.1.4.1.311.20.2.2", "SmartCardLogon", "Smart Card Logon")
#endif
};
int NewX509::dn_nid[DISTNAME_CNT] = {