source: trip-planner-front/node_modules/node-forge/lib/oids.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 6.3 KB
Line 
1/**
2 * Object IDs for ASN.1.
3 *
4 * @author Dave Longley
5 *
6 * Copyright (c) 2010-2013 Digital Bazaar, Inc.
7 */
8var forge = require('./forge');
9
10forge.pki = forge.pki || {};
11var oids = module.exports = forge.pki.oids = forge.oids = forge.oids || {};
12
13// set id to name mapping and name to id mapping
14function _IN(id, name) {
15 oids[id] = name;
16 oids[name] = id;
17}
18// set id to name mapping only
19function _I_(id, name) {
20 oids[id] = name;
21}
22
23// algorithm OIDs
24_IN('1.2.840.113549.1.1.1', 'rsaEncryption');
25// Note: md2 & md4 not implemented
26//_IN('1.2.840.113549.1.1.2', 'md2WithRSAEncryption');
27//_IN('1.2.840.113549.1.1.3', 'md4WithRSAEncryption');
28_IN('1.2.840.113549.1.1.4', 'md5WithRSAEncryption');
29_IN('1.2.840.113549.1.1.5', 'sha1WithRSAEncryption');
30_IN('1.2.840.113549.1.1.7', 'RSAES-OAEP');
31_IN('1.2.840.113549.1.1.8', 'mgf1');
32_IN('1.2.840.113549.1.1.9', 'pSpecified');
33_IN('1.2.840.113549.1.1.10', 'RSASSA-PSS');
34_IN('1.2.840.113549.1.1.11', 'sha256WithRSAEncryption');
35_IN('1.2.840.113549.1.1.12', 'sha384WithRSAEncryption');
36_IN('1.2.840.113549.1.1.13', 'sha512WithRSAEncryption');
37// Edwards-curve Digital Signature Algorithm (EdDSA) Ed25519
38_IN('1.3.101.112', 'EdDSA25519');
39
40_IN('1.2.840.10040.4.3', 'dsa-with-sha1');
41
42_IN('1.3.14.3.2.7', 'desCBC');
43
44_IN('1.3.14.3.2.26', 'sha1');
45_IN('2.16.840.1.101.3.4.2.1', 'sha256');
46_IN('2.16.840.1.101.3.4.2.2', 'sha384');
47_IN('2.16.840.1.101.3.4.2.3', 'sha512');
48_IN('1.2.840.113549.2.5', 'md5');
49
50// pkcs#7 content types
51_IN('1.2.840.113549.1.7.1', 'data');
52_IN('1.2.840.113549.1.7.2', 'signedData');
53_IN('1.2.840.113549.1.7.3', 'envelopedData');
54_IN('1.2.840.113549.1.7.4', 'signedAndEnvelopedData');
55_IN('1.2.840.113549.1.7.5', 'digestedData');
56_IN('1.2.840.113549.1.7.6', 'encryptedData');
57
58// pkcs#9 oids
59_IN('1.2.840.113549.1.9.1', 'emailAddress');
60_IN('1.2.840.113549.1.9.2', 'unstructuredName');
61_IN('1.2.840.113549.1.9.3', 'contentType');
62_IN('1.2.840.113549.1.9.4', 'messageDigest');
63_IN('1.2.840.113549.1.9.5', 'signingTime');
64_IN('1.2.840.113549.1.9.6', 'counterSignature');
65_IN('1.2.840.113549.1.9.7', 'challengePassword');
66_IN('1.2.840.113549.1.9.8', 'unstructuredAddress');
67_IN('1.2.840.113549.1.9.14', 'extensionRequest');
68
69_IN('1.2.840.113549.1.9.20', 'friendlyName');
70_IN('1.2.840.113549.1.9.21', 'localKeyId');
71_IN('1.2.840.113549.1.9.22.1', 'x509Certificate');
72
73// pkcs#12 safe bags
74_IN('1.2.840.113549.1.12.10.1.1', 'keyBag');
75_IN('1.2.840.113549.1.12.10.1.2', 'pkcs8ShroudedKeyBag');
76_IN('1.2.840.113549.1.12.10.1.3', 'certBag');
77_IN('1.2.840.113549.1.12.10.1.4', 'crlBag');
78_IN('1.2.840.113549.1.12.10.1.5', 'secretBag');
79_IN('1.2.840.113549.1.12.10.1.6', 'safeContentsBag');
80
81// password-based-encryption for pkcs#12
82_IN('1.2.840.113549.1.5.13', 'pkcs5PBES2');
83_IN('1.2.840.113549.1.5.12', 'pkcs5PBKDF2');
84
85_IN('1.2.840.113549.1.12.1.1', 'pbeWithSHAAnd128BitRC4');
86_IN('1.2.840.113549.1.12.1.2', 'pbeWithSHAAnd40BitRC4');
87_IN('1.2.840.113549.1.12.1.3', 'pbeWithSHAAnd3-KeyTripleDES-CBC');
88_IN('1.2.840.113549.1.12.1.4', 'pbeWithSHAAnd2-KeyTripleDES-CBC');
89_IN('1.2.840.113549.1.12.1.5', 'pbeWithSHAAnd128BitRC2-CBC');
90_IN('1.2.840.113549.1.12.1.6', 'pbewithSHAAnd40BitRC2-CBC');
91
92// hmac OIDs
93_IN('1.2.840.113549.2.7', 'hmacWithSHA1');
94_IN('1.2.840.113549.2.8', 'hmacWithSHA224');
95_IN('1.2.840.113549.2.9', 'hmacWithSHA256');
96_IN('1.2.840.113549.2.10', 'hmacWithSHA384');
97_IN('1.2.840.113549.2.11', 'hmacWithSHA512');
98
99// symmetric key algorithm oids
100_IN('1.2.840.113549.3.7', 'des-EDE3-CBC');
101_IN('2.16.840.1.101.3.4.1.2', 'aes128-CBC');
102_IN('2.16.840.1.101.3.4.1.22', 'aes192-CBC');
103_IN('2.16.840.1.101.3.4.1.42', 'aes256-CBC');
104
105// certificate issuer/subject OIDs
106_IN('2.5.4.3', 'commonName');
107_IN('2.5.4.5', 'serialName');
108_IN('2.5.4.6', 'countryName');
109_IN('2.5.4.7', 'localityName');
110_IN('2.5.4.8', 'stateOrProvinceName');
111_IN('2.5.4.9', 'streetAddress');
112_IN('2.5.4.10', 'organizationName');
113_IN('2.5.4.11', 'organizationalUnitName');
114_IN('2.5.4.13', 'description');
115_IN('2.5.4.15', 'businessCategory');
116_IN('2.5.4.17', 'postalCode');
117_IN('1.3.6.1.4.1.311.60.2.1.2', 'jurisdictionOfIncorporationStateOrProvinceName');
118_IN('1.3.6.1.4.1.311.60.2.1.3', 'jurisdictionOfIncorporationCountryName');
119
120// X.509 extension OIDs
121_IN('2.16.840.1.113730.1.1', 'nsCertType');
122_IN('2.16.840.1.113730.1.13', 'nsComment'); // deprecated in theory; still widely used
123_I_('2.5.29.1', 'authorityKeyIdentifier'); // deprecated, use .35
124_I_('2.5.29.2', 'keyAttributes'); // obsolete use .37 or .15
125_I_('2.5.29.3', 'certificatePolicies'); // deprecated, use .32
126_I_('2.5.29.4', 'keyUsageRestriction'); // obsolete use .37 or .15
127_I_('2.5.29.5', 'policyMapping'); // deprecated use .33
128_I_('2.5.29.6', 'subtreesConstraint'); // obsolete use .30
129_I_('2.5.29.7', 'subjectAltName'); // deprecated use .17
130_I_('2.5.29.8', 'issuerAltName'); // deprecated use .18
131_I_('2.5.29.9', 'subjectDirectoryAttributes');
132_I_('2.5.29.10', 'basicConstraints'); // deprecated use .19
133_I_('2.5.29.11', 'nameConstraints'); // deprecated use .30
134_I_('2.5.29.12', 'policyConstraints'); // deprecated use .36
135_I_('2.5.29.13', 'basicConstraints'); // deprecated use .19
136_IN('2.5.29.14', 'subjectKeyIdentifier');
137_IN('2.5.29.15', 'keyUsage');
138_I_('2.5.29.16', 'privateKeyUsagePeriod');
139_IN('2.5.29.17', 'subjectAltName');
140_IN('2.5.29.18', 'issuerAltName');
141_IN('2.5.29.19', 'basicConstraints');
142_I_('2.5.29.20', 'cRLNumber');
143_I_('2.5.29.21', 'cRLReason');
144_I_('2.5.29.22', 'expirationDate');
145_I_('2.5.29.23', 'instructionCode');
146_I_('2.5.29.24', 'invalidityDate');
147_I_('2.5.29.25', 'cRLDistributionPoints'); // deprecated use .31
148_I_('2.5.29.26', 'issuingDistributionPoint'); // deprecated use .28
149_I_('2.5.29.27', 'deltaCRLIndicator');
150_I_('2.5.29.28', 'issuingDistributionPoint');
151_I_('2.5.29.29', 'certificateIssuer');
152_I_('2.5.29.30', 'nameConstraints');
153_IN('2.5.29.31', 'cRLDistributionPoints');
154_IN('2.5.29.32', 'certificatePolicies');
155_I_('2.5.29.33', 'policyMappings');
156_I_('2.5.29.34', 'policyConstraints'); // deprecated use .36
157_IN('2.5.29.35', 'authorityKeyIdentifier');
158_I_('2.5.29.36', 'policyConstraints');
159_IN('2.5.29.37', 'extKeyUsage');
160_I_('2.5.29.46', 'freshestCRL');
161_I_('2.5.29.54', 'inhibitAnyPolicy');
162
163// extKeyUsage purposes
164_IN('1.3.6.1.4.1.11129.2.4.2', 'timestampList');
165_IN('1.3.6.1.5.5.7.1.1', 'authorityInfoAccess');
166_IN('1.3.6.1.5.5.7.3.1', 'serverAuth');
167_IN('1.3.6.1.5.5.7.3.2', 'clientAuth');
168_IN('1.3.6.1.5.5.7.3.3', 'codeSigning');
169_IN('1.3.6.1.5.5.7.3.4', 'emailProtection');
170_IN('1.3.6.1.5.5.7.3.8', 'timeStamping');
Note: See TracBrowser for help on using the repository browser.