1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is the Netscape security libraries.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 2004
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#include "secoid.h"
#include "secmodt.h" /* for CKM_INVALID_MECHANISM */
#define OI(x) { siDEROID, (unsigned char *)x, sizeof x }
#define OD(oid,tag,desc,mech,ext) { OI(oid), tag, desc, mech, ext }
#define ODN(oid,desc) \
{ OI(oid), 0, desc, CKM_INVALID_MECHANISM, INVALID_CERT_EXTENSION }
#define OIDT static const unsigned char
/* OIW Security Special Interest Group defined algorithms. */
#define OIWSSIG 0x2B, 13, 3, 2
OIDT oiwMD5RSA[] = { OIWSSIG, 3 };
OIDT oiwDESCBC[] = { OIWSSIG, 7 };
OIDT oiwRSAsig[] = { OIWSSIG, 11 };
OIDT oiwDSA [] = { OIWSSIG, 12 };
OIDT oiwMD5RSAsig[] = { OIWSSIG, 25 };
OIDT oiwSHA1 [] = { OIWSSIG, 26 };
OIDT oiwDSASHA1[] = { OIWSSIG, 27 };
OIDT oiwDSASHA1param[] = { OIWSSIG, 28 };
OIDT oiwSHA1RSA[] = { OIWSSIG, 29 };
/* Microsoft OIDs. (1 3 6 1 4 1 311 ... ) */
#define MICROSOFT 0x2B, 0x06, 0x01, 0x04, 0x01, 0x82, 0x37
OIDT mCTL[] = { MICROSOFT, 10, 3, 1 }; /* Cert Trust List signing */
OIDT mTSS[] = { MICROSOFT, 10, 3, 2 }; /* Time Stamp Signing */
OIDT mSGC[] = { MICROSOFT, 10, 3, 3 }; /* Server gated cryptography */
OIDT mEFS[] = { MICROSOFT, 10, 3, 4 }; /* Encrypted File System */
OIDT mSMIME[] = { MICROSOFT, 16, 4 }; /* SMIME encryption key prefs */
OIDT mECRTT[] = { MICROSOFT, 20, 2 }; /* Enrollment cert type xtn */
OIDT mEAGNT[] = { MICROSOFT, 20, 2, 1 }; /* Enrollment Agent */
OIDT mKPSCL[] = { MICROSOFT, 20, 2, 2 }; /* KP SmartCard Logon */
OIDT mNTPN [] = { MICROSOFT, 20, 2, 3 }; /* NT Principal Name */
OIDT mCASRV[] = { MICROSOFT, 21, 1 }; /* CertServ CA version */
/* AOL OIDs (1 3 6 1 4 1 1066 ... ) */
#define AOL 0x2B, 0x06, 0x01, 0x04, 0x01, 0x88, 0x2A
/* PKIX IDs (1 3 6 1 5 5 7 ...) */
#define ID_PKIX 0x2B, 6, 1, 5, 5, 7
/* PKIX Access Descriptors (methods for Authority Info Access Extns) */
#define ID_AD ID_PKIX, 48
OIDT padOCSP[] = { ID_AD, 1 }; /* OCSP method */
OIDT padCAissuer[] = { ID_AD, 2 }; /* URI (for CRL ?) */
OIDT padTimeStamp[] = { ID_AD, 3 }; /* time stamping */
/* ISO Cert Extension type OIDs (id-ce) (2 5 29 ...) */
#define X500 0x55
#define X520_ATTRIBUTE_TYPE X500, 0x04
#define X500_ALG X500, 0x08
#define X500_ALG_ENCRYPTION X500_ALG, 0x01
#define ID_CE X500, 29
OIDT cePlcyObs[] = { ID_CE, 3 }; /* Cert policies, obsolete. */
OIDT cePlcyCns[] = { ID_CE, 36 }; /* Cert policy constraints. */
/* US Company arc (2 16 840 1 ...) */
#define USCOM 0x60, 0x86, 0x48, 0x01
#define USGOV USCOM, 0x65
#define USDOD USGOV, 2
#define ID_INFOSEC USDOD, 1
/* Verisign PKI OIDs (2 16 840 1 113733 1 ...) */
#define VERISIGN_PKI USCOM, 0x86, 0xf8, 0x45, 1
#define VERISIGN_XTN VERISIGN_PKI, 6
#define VERISIGN_POL VERISIGN_PKI, 7 /* Cert policies */
#define VERISIGN_TNET VERISIGN_POL, 23 /* Verisign Trust Network */
OIDT vcx7[] = { VERISIGN_XTN, 7 }; /* Cert Extension 7 (?) */
OIDT vcp1[] = { VERISIGN_TNET, 1 }; /* class 1 cert policy */
OIDT vcp2[] = { VERISIGN_TNET, 2 }; /* class 2 cert policy */
OIDT vcp3[] = { VERISIGN_TNET, 3 }; /* class 3 cert policy */
OIDT vcp4[] = { VERISIGN_TNET, 4 }; /* class 4 cert policy */
/* ------------------------------------------------------------------- */
static const SECOidData oids[] = {
/* OIW Security Special Interest Group OIDs */
ODN( oiwMD5RSA, "OIWSecSIG MD5 with RSA"),
ODN( oiwDESCBC, "OIWSecSIG DES CBC"),
ODN( oiwRSAsig, "OIWSecSIG RSA signature"),
ODN( oiwDSA , "OIWSecSIG DSA"),
ODN( oiwMD5RSAsig, "OIWSecSIG MD5 with RSA signature"),
ODN( oiwSHA1 , "OIWSecSIG SHA1"),
ODN( oiwDSASHA1, "OIWSecSIG DSA with SHA1"),
ODN( oiwDSASHA1param, "OIWSecSIG DSA with SHA1 with params"),
ODN( oiwSHA1RSA, "OIWSecSIG MD5 with RSA"),
/* Microsoft OIDs */
ODN( mCTL, "Microsoft Cert Trust List signing"),
ODN( mTSS, "Microsoft Time Stamp signing"),
ODN( mSGC, "Microsoft SGC SSL server"),
ODN( mEFS, "Microsoft Encrypted File System"),
ODN( mSMIME, "Microsoft SMIME preferences"),
ODN( mECRTT, "Microsoft Enrollment Cert Type Extension"),
ODN( mEAGNT, "Microsoft Enrollment Agent"),
ODN( mKPSCL, "Microsoft KP SmartCard Logon"),
ODN( mNTPN, "Microsoft NT Principal Name"),
ODN( mCASRV, "Microsoft CertServ CA version"),
/* PKIX OIDs */
ODN( padOCSP, "PKIX OCSP method"),
ODN( padCAissuer, "PKIX CA Issuer method"),
ODN( padTimeStamp, "PKIX Time Stamping method"),
/* ID_CE OIDs. */
ODN( cePlcyObs, "Certificate Policies (Obsolete)"),
ODN( cePlcyCns, "Certificate Policy Constraints"),
/* Verisign OIDs. */
ODN( vcx7, "Verisign Cert Extension 7 (?)"),
ODN( vcp1, "Verisign Class 1 Certificate Policy"),
ODN( vcp2, "Verisign Class 2 Certificate Policy"),
ODN( vcp3, "Verisign Class 3 Certificate Policy"),
ODN( vcp4, "Verisign Class 4 Certificate Policy"),
};
static const unsigned int numOids = (sizeof oids) / (sizeof oids[0]);
SECStatus
SECU_RegisterDynamicOids(void)
{
unsigned int i;
SECStatus rv = SECSuccess;
for (i = 0; i < numOids; ++i) {
SECOidTag tag = SECOID_AddEntry(&oids[i]);
if (tag == SEC_OID_UNKNOWN) {
rv = SECFailure;
#ifdef DEBUG_DYN_OIDS
fprintf(stderr, "Add OID[%d] failed\n", i);
} else {
fprintf(stderr, "Add OID[%d] returned tag %d\n", i, tag);
#endif
}
}
return rv;
}
|