From 304bb5b97ae5f34b1bacf19db2d4aa1eeeba84f4 Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Thu, 7 Apr 2022 18:31:41 -0700 Subject: [PATCH] Remove unused code. --- ca/client.go | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/ca/client.go b/ca/client.go index 4aa66aac..0bd93195 100644 --- a/ca/client.go +++ b/ca/client.go @@ -10,7 +10,6 @@ import ( "crypto/tls" "crypto/x509" "crypto/x509/pkix" - "encoding/asn1" "encoding/hex" "encoding/json" "encoding/pem" @@ -293,18 +292,6 @@ func WithCertificate(cert tls.Certificate) ClientOption { } } -var ( - stepOIDRoot = asn1.ObjectIdentifier{1, 3, 6, 1, 4, 1, 37476, 9000, 64} - stepOIDProvisioner = append(asn1.ObjectIdentifier(nil), append(stepOIDRoot, 1)...) -) - -type stepProvisionerASN1 struct { - Type int - Name []byte - CredentialID []byte - KeyValuePairs []string `asn1:"optional,omitempty"` -} - // WithAdminX5C will set the given file as the X5C certificate for use // by the client. func WithAdminX5C(certs []*x509.Certificate, key interface{}, passwordFile string) ClientOption {