// Copyright (c) 2022 Tailscale Inc & AUTHORS All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package tka import ( "crypto/ed25519" "testing" "github.com/google/go-cmp/cmp" ) func TestSigDirect(t *testing.T) { nodeKeyPub := []byte{1, 2, 3, 4} // Verification key (the key used to sign) pub, priv := testingKey25519(t, 1) key := Key{Kind: Key25519, Public: pub, Votes: 2} sig := NodeKeySignature{ SigKind: SigDirect, KeyID: key.ID(), Pubkey: nodeKeyPub, } sigHash := sig.SigHash() sig.Signature = ed25519.Sign(priv, sigHash[:]) if sig.SigHash() != sigHash { t.Errorf("sigHash changed after signing: %x != %x", sig.SigHash(), sigHash) } if err := sig.verifySignature(key); err != nil { t.Fatalf("verifySignature() failed: %v", err) } } func TestSigSerializeUnserialize(t *testing.T) { nodeKeyPub := []byte{1, 2, 3, 4} pub, priv := testingKey25519(t, 1) key := Key{Kind: Key25519, Public: pub, Votes: 2} sig := NodeKeySignature{ SigKind: SigDirect, KeyID: key.ID(), Pubkey: nodeKeyPub, } sigHash := sig.SigHash() sig.Signature = ed25519.Sign(priv, sigHash[:]) var decoded NodeKeySignature if err := decoded.Unserialize(sig.Serialize()); err != nil { t.Fatalf("Unserialize() failed: %v", err) } if diff := cmp.Diff(sig, decoded); diff != "" { t.Errorf("unmarshalled version differs (-want, +got):\n%s", diff) } }