generate keys in unit test

pull/1561/head
Jeff Becker 3 years ago
parent 6c8e5256d6
commit 5fd15fa044
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -19,6 +19,13 @@ using LRCR = LR_CommitRecord;
class FrameTest : public test::LlarpTest<>
{
public:
FrameTest() : test::LlarpTest<>{}
{
auto crypto = CryptoManager::instance();
crypto->encryption_keygen(alice);
crypto->encryption_keygen(bob);
}
SecretKey alice, bob;
};

Loading…
Cancel
Save