diff options
-rw-r--r-- | src/charon/sa/keymat.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/charon/sa/keymat.c b/src/charon/sa/keymat.c index b2e646c93..819ff5a37 100644 --- a/src/charon/sa/keymat.c +++ b/src/charon/sa/keymat.c @@ -463,6 +463,16 @@ static bool derive_child_keys(private_keymat_t *this, prf_plus->destroy(prf_plus); + if (enc_size) + { + DBG4(DBG_CHD, "encryption initiator key %B", encr_i); + DBG4(DBG_CHD, "encryption responder key %B", encr_r); + } + if (int_size) + { + DBG4(DBG_CHD, "integrity initiator key %B", integ_i); + DBG4(DBG_CHD, "integrity responder key %B", integ_r); + } return TRUE; } |