package state import ( . "github.com/tendermint/tendermint/common" "testing" ) func TestSignAndValidate(t *testing.T) { privAccount := GenPrivAccount() account := &privAccount.Account msg := CRandBytes(128) sig := privAccount.Sign(msg) t.Logf("msg: %X, sig: %X", msg, sig) // Test the signature if !account.Verify(msg, sig) { t.Errorf("Account message signature verification failed") } // Mutate the signature, just one bit. sig.Bytes[0] ^= byte(0x01) if account.Verify(msg, sig) { t.Errorf("Account message signature verification should have failed but passed instead") } }