yubikey

package
v0.0.0-...-3746c95 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 11, 2024 License: BSD-3-Clause Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ExtIDFirmwareVersion = asn1.ObjectIdentifier([]int{1, 3, 6, 1, 4, 1, 41482, 3, 3})
	ExtIDSerialNumber    = asn1.ObjectIdentifier([]int{1, 3, 6, 1, 4, 1, 41482, 3, 7})
	ExtIDKeyPolicy       = asn1.ObjectIdentifier([]int{1, 3, 6, 1, 4, 1, 41482, 3, 8})
	ExtIDFormFactor      = asn1.ObjectIdentifier([]int{1, 3, 6, 1, 4, 1, 41482, 3, 9})
)

Functions

func AlgoName

func AlgoName(a piv.Algorithm) string

func AlgoNames

func AlgoNames() []string

func AlgoParse

func AlgoParse(s string) (piv.Algorithm, error)

func CardSupported

func CardSupported(name string) bool

func GenExtFirmwareVersion

func GenExtFirmwareVersion(v piv.Version) pkix.Extension

func GenExtKeyPolicy

func GenExtKeyPolicy(tp piv.TouchPolicy, pp piv.PINPolicy) pkix.Extension

func GenExtSerialNumber

func GenExtSerialNumber(serial uint32) pkix.Extension

func GenerateSlotCert

func GenerateSlotCert(yk *piv.YubiKey, pubKey crypto.PublicKey, signer any, slot piv.Slot, tp piv.TouchPolicy, pp piv.PINPolicy) (*x509.Certificate, error)

GenerateSlotCert create a certificate that is stored in a Yubikey slot to indicate that a key was imported into that slot. It serves as nothing more than a label on the outside of the tin that contains the private key and should only be used for information. It should not be relied upon for anything cryptographic. It is not possible to ask all but the most recent of Yubikeys for the public part of a key that was imported into a slot, hence the need for a certificate to be used as a label. It is possible to update the key and certificate in a slot independently so the presence of a certificate in a slot does not guarantee the presence of the corresponding private key in the slot, but it is the best indicator we have when the slot cannot produce an attestation certificate.

func GetCardByName

func GetCardByName(searchName string) (*piv.YubiKey, error)

func GetCardBySerial

func GetCardBySerial(serial uint32) (*piv.YubiKey, error)

func ParseExtKeyPolicy

func ParseExtKeyPolicy(value []byte) (tp piv.TouchPolicy, pp piv.PINPolicy)

func PinPolicyName

func PinPolicyName(pp piv.PINPolicy) string

func PinPolicyNames

func PinPolicyNames() []string

func PinPolicyParse

func PinPolicyParse(s string) (piv.PINPolicy, error)

func PoliciesFromSlotCert

func PoliciesFromSlotCert(cert *x509.Certificate) (piv.TouchPolicy, piv.PINPolicy)

PoliciesFromSlotCert extracts the touch and pin policies from a slot certificate. They are a helpful indicator to know how to set up the signer obtained from the private key in a slot. Getting the policy wrong is not insecure but may result in the user being asked for their pin more than necessary, or not enough times and the signer will error instead of producing a signature, annoying but not insecure.

If either of the policies cannot be determined, zero will be returned for that policy. If the extension is not found, both will eb returned as zero.

func SlotDescription

func SlotDescription(s string) string

func SlotDescriptions

func SlotDescriptions() string

func SlotName

func SlotName(s piv.Slot) string

func SlotNames

func SlotNames() []string

func SlotParse

func SlotParse(s string) (piv.Slot, error)

func Slots

func Slots() []piv.Slot

func TouchPolicyName

func TouchPolicyName(tp piv.TouchPolicy) string

func TouchPolicyNames

func TouchPolicyNames() []string

func TouchPolicyParse

func TouchPolicyParse(s string) (piv.TouchPolicy, error)

Types

type CardInfo

type CardInfo struct {
	Serial          uint32
	Version         piv.Version
	AttestationCert *x509.Certificate
	Slots           map[string]*SlotInfo
}

func GetCardInfo

func GetCardInfo(name string) (info *CardInfo, err error)

type SlotInfo

type SlotInfo struct {
	Attestation, Certificate *x509.Certificate
}

func GetSlotInfo

func GetSlotInfo(yk *piv.YubiKey, slot piv.Slot) (slotInfo *SlotInfo, err error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL