File: oid.go

package info (click to toggle)
golang-github-google-go-attestation 0.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,260 kB
  • sloc: sh: 158; makefile: 22
file content (61 lines) | stat: -rw-r--r-- 2,294 bytes parent folder | download
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
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Package oid contains X.509 and TCG ASN.1 object identifiers.
package oid

// Trusted Computing Group (2.23.133)
var (
	TPMManufacturer            = []int{2, 23, 133, 2, 1}
	TPMModel                   = []int{2, 23, 133, 2, 2}
	TPMVersion                 = []int{2, 23, 133, 2, 3}
	TCGPlatformSpecification   = []int{2, 23, 133, 2, 17}
	TBBSecurityAssertions      = []int{2, 23, 133, 2, 19}
	TPMSpecification           = []int{2, 23, 133, 2, 16}
	TCGCredentialSpecification = []int{2, 23, 133, 2, 23}
	TCGCredentialType          = []int{2, 23, 133, 2, 25}
	PlatformManufacturerStr    = []int{2, 23, 133, 5, 1, 1}
	PlatformManufacturerID     = []int{2, 23, 133, 5, 1, 2}
	PlatformConfigURI          = []int{2, 23, 133, 5, 1, 3}
	PlatformModel              = []int{2, 23, 133, 5, 1, 4}
	PlatformVersion            = []int{2, 23, 133, 5, 1, 5}
	PlatformSerial             = []int{2, 23, 133, 5, 1, 6}
	PlatformConfigurationV1    = []int{2, 23, 133, 5, 1, 7, 1}
	PlatformConfigurationV2    = []int{2, 23, 133, 5, 1, 7, 2}
	EKCertificate              = []int{2, 23, 133, 8, 1}
	VerifiedTPMRestricted      = []int{2, 23, 133, 11, 1, 3}
	EKPermIDSHA256             = []int{2, 23, 133, 12, 1}
)

// X.509 (2.23.23)
//
// https://www.itu.int/ITU-T/recommendations/rec.aspx?rec=14033
// https://tools.ietf.org/html/rfc5280
var (
	SubjectDirectoryAttributes = []int{2, 5, 29, 9}
	SubjectAltName             = []int{2, 5, 29, 17}
	CertificatePolicies        = []int{2, 5, 29, 32}
)

// RFC 4043
//
// https://tools.ietf.org/html/rfc4043
var (
	PermanentIdentifier = []int{1, 3, 6, 1, 5, 5, 7, 8, 3}
)

// Google (1.3.6.1.4.1.11129)
var (
	CloudComputeInstanceIdentifier = []int{1, 3, 6, 1, 4, 1, 11129, 2, 1, 21}
)