(t *testing.T)
| 129 | } |
| 130 | |
| 131 | func TestRandomMessagesWithSameKey(t *testing.T) { |
| 132 | pubkey, seckey := generateKeyPair() |
| 133 | keys := func() ([]byte, []byte) { |
| 134 | return pubkey, seckey |
| 135 | } |
| 136 | signAndRecoverWithRandomMessages(t, keys) |
| 137 | } |
| 138 | |
| 139 | func TestRandomMessagesWithRandomKeys(t *testing.T) { |
| 140 | keys := func() ([]byte, []byte) { |
nothing calls this directly
no test coverage detected