20 lines
644 B
Go
20 lines
644 B
Go
package asn1
|
|
|
|
var (
|
|
OID_NAMES = map[string]string {
|
|
"1.2.840.113549.1.1.1": "rsaEncryption",
|
|
"1.2.840.113549.1.1.11": "sha256WithRSAEncryption",
|
|
"1.3.6.1.4.1.11129.2.4.2": "signedCertificateTimestampList",
|
|
"1.3.6.1.5.5.7.1.1": "authorityInfoAccess",
|
|
"2.5.4.3": "id-at-commonName",
|
|
"2.5.4.6": "id-at-countryName",
|
|
"2.5.4.10": "id-at-organizationName",
|
|
"2.5.29.14": "subjectKeyIdentifier",
|
|
"2.5.29.15": "keyUsage",
|
|
"2.5.29.17": "subjectAltName",
|
|
"2.5.29.19": "basicConstraints",
|
|
"2.5.29.32": "certificatePolicies",
|
|
"2.5.29.35": "authorityKeyIdentifier",
|
|
"2.5.29.37": "extKeyUsage",
|
|
}
|
|
)
|