mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
SmartCard Logon OID
This commit is contained in:
parent
82a925a9ff
commit
3124f25981
@ -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
|
||||
|
||||
@ -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() {
|
||||
|
||||
@ -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] = {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user