| 389 | } |
| 390 | |
| 391 | static void generate_key_set(const struct secret *secret, |
| 392 | struct keyset *keys) |
| 393 | { |
| 394 | subkey_from_hmac("rho", secret, &keys->rho); |
| 395 | subkey_from_hmac("pi", secret, &keys->pi); |
| 396 | subkey_from_hmac("mu", secret, &keys->mu); |
| 397 | subkey_from_hmac("gamma", secret, &keys->gamma); |
| 398 | } |
| 399 | |
| 400 | static struct hop_params *generate_hop_params( |
| 401 | const tal_t *ctx, |
no test coverage detected