2023-01-27 21:37:20 +00:00
|
|
|
// Copyright (c) Tailscale Inc & AUTHORS
|
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2022-08-04 18:45:19 +00:00
|
|
|
|
|
|
|
// Package tkatype defines types for working with the tka package.
|
|
|
|
//
|
|
|
|
// Do not add extra dependencies to this package unless they are tiny,
|
|
|
|
// because this package encodes wire types that should be lightweight to use.
|
|
|
|
package tkatype
|
|
|
|
|
|
|
|
// KeyID references a verification key stored in the key authority. A keyID
|
|
|
|
// uniquely identifies a key. KeyIDs are all 32 bytes.
|
|
|
|
//
|
|
|
|
// For 25519 keys: We just use the 32-byte public key.
|
|
|
|
//
|
|
|
|
// Even though this is a 32-byte value, we use a byte slice because
|
|
|
|
// CBOR-encoded byte slices have a different prefix to CBOR-encoded arrays.
|
|
|
|
// Encoding as a byte slice allows us to change the size in the future if we
|
|
|
|
// ever need to.
|
|
|
|
type KeyID []byte
|
|
|
|
|
|
|
|
// MarshaledSignature represents a marshaled tka.NodeKeySignature.
|
|
|
|
type MarshaledSignature []byte
|
|
|
|
|
2022-08-11 17:43:09 +00:00
|
|
|
// MarshaledAUM represents a marshaled tka.AUM.
|
|
|
|
type MarshaledAUM []byte
|
|
|
|
|
2022-08-04 18:45:19 +00:00
|
|
|
// AUMSigHash represents the BLAKE2s digest of an Authority Update
|
|
|
|
// Message (AUM), sans any signatures.
|
|
|
|
type AUMSigHash [32]byte
|
|
|
|
|
2022-08-11 17:43:09 +00:00
|
|
|
// NKSSigHash represents the BLAKE2s digest of a Node-Key Signature (NKS),
|
|
|
|
// sans the Signature field if present.
|
|
|
|
type NKSSigHash [32]byte
|
|
|
|
|
2022-08-04 18:45:19 +00:00
|
|
|
// Signature describes a signature over an AUM, which can be verified
|
|
|
|
// using the key referenced by KeyID.
|
|
|
|
type Signature struct {
|
|
|
|
KeyID KeyID `cbor:"1,keyasint"`
|
|
|
|
Signature []byte `cbor:"2,keyasint"`
|
|
|
|
}
|