diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-08-06 17:33:46 +0200 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2010-08-07 11:26:04 +0200 |
commit | a6444fcdd4013656de768c751922287a33853334 (patch) | |
tree | 80dcaddb11b837a2c6653bf735351585504b1698 /src/libtls/tls_crypto.h | |
parent | b4d30a425e2f0b855ba6ecf3b23c4b1bc1412eaf (diff) | |
download | strongswan-a6444fcdd4013656de768c751922287a33853334.tar.bz2 strongswan-a6444fcdd4013656de768c751922287a33853334.tar.xz |
EAP-TLS and EAP-TTLS use different constant MSK PRF label
Diffstat (limited to 'src/libtls/tls_crypto.h')
-rw-r--r-- | src/libtls/tls_crypto.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libtls/tls_crypto.h b/src/libtls/tls_crypto.h index 5fe90d868..09f1a0e8a 100644 --- a/src/libtls/tls_crypto.h +++ b/src/libtls/tls_crypto.h @@ -359,7 +359,9 @@ struct tls_crypto_t { /** * Create a tls_crypto instance. + * + * @param msk_label ASCII string constant used as seed for MSK PRF */ -tls_crypto_t *tls_crypto_create(tls_t *tls); +tls_crypto_t *tls_crypto_create(tls_t *tls, char *msk_label); #endif /** TLS_CRYPTO_H_ @}*/ |