type crypto/x509/pkix.Extension
31 uses
crypto/x509/pkix (current package)
pkix.go#L113: type Extension struct {
pkix.go#L307: Extensions []Extension `asn1:"tag:0,optional,explicit"`
pkix.go#L315: Extensions []Extension `asn1:"optional"`
crypto/x509
x509.go#L159: Extensions []pkix.Extension `asn1:"optional,explicit,tag:3"`
x509.go#L653: Extensions []pkix.Extension
x509.go#L659: ExtraExtensions []pkix.Extension
x509.go#L1133: func parseNameConstraintsExtension(out *Certificate, e pkix.Extension) (unhandled bool, err error) {
x509.go#L1635: func oidInExtensions(oid asn1.ObjectIdentifier, extensions []pkix.Extension) bool {
x509.go#L1689: func buildCertExtensions(template *Certificate, subjectIsEmpty bool, authorityKeyId []byte, subjectKeyId []byte) (ret []pkix.Extension, err error) {
x509.go#L1690: ret = make([]pkix.Extension, 10 /* maximum number of elements. */)
x509.go#L1911: func marshalKeyUsage(ku KeyUsage) (pkix.Extension, error) {
x509.go#L1912: ext := pkix.Extension{Id: oidExtensionKeyUsage, Critical: true}
x509.go#L1932: func marshalExtKeyUsage(extUsages []ExtKeyUsage, unknownUsages []asn1.ObjectIdentifier) (pkix.Extension, error) {
x509.go#L1933: ext := pkix.Extension{Id: oidExtensionExtendedKeyUsage}
x509.go#L1954: func marshalBasicConstraints(isCA bool, maxPathLen int, maxPathLenZero bool) (pkix.Extension, error) {
x509.go#L1955: ext := pkix.Extension{Id: oidExtensionBasicConstraints, Critical: true}
x509.go#L1970: func marshalCertificatePolicies(policyIdentifiers []asn1.ObjectIdentifier) (pkix.Extension, error) {
x509.go#L1971: ext := pkix.Extension{Id: oidExtensionCertificatePolicies}
x509.go#L1984: func buildCSRExtensions(template *CertificateRequest) ([]pkix.Extension, error) {
x509.go#L1985: var ret []pkix.Extension
x509.go#L1994: ret = append(ret, pkix.Extension{
x509.go#L2321: var aki pkix.Extension
x509.go#L2381: Extensions []pkix.Extension
x509.go#L2390: ExtraExtensions []pkix.Extension
x509.go#L2456: func parseCSRExtensions(rawAttributes []asn1.RawValue) ([]pkix.Extension, error) {
x509.go#L2463: var ret []pkix.Extension
x509.go#L2475: var extensions []pkix.Extension
x509.go#L2592: Value [][]pkix.Extension `asn1:"set"`
x509.go#L2595: Value: [][]pkix.Extension{extensions},
x509.go#L2755: ExtraExtensions []pkix.Extension
x509.go#L2817: Extensions: []pkix.Extension{
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |