diff options
Diffstat (limited to 'Source/charon/transforms/prfs/prf.h')
-rw-r--r-- | Source/charon/transforms/prfs/prf.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/charon/transforms/prfs/prf.h b/Source/charon/transforms/prfs/prf.h index d96fc66ae..17b1110b2 100644 --- a/Source/charon/transforms/prfs/prf.h +++ b/Source/charon/transforms/prfs/prf.h @@ -98,6 +98,14 @@ struct prf_t { size_t (*get_block_size) (prf_t *this); /** + * @brief Get the key size of this prf_t object. + * + * @param this calling object + * @return key size in bytes + */ + size_t (*get_key_size) (prf_t *this); + + /** * @brief Set the key for this prf_t object. * * @param this calling object |