Integrate J-PAKE and TLS-PSK. Increase PSK buffer size. Fix memory leaks.

This commit is contained in:
Ben Laurie
2008-11-16 12:47:12 +00:00
parent ad7159ea84
commit f3b7bdadbc
6 changed files with 83 additions and 12 deletions

View File

@@ -910,7 +910,7 @@ void SSL_CTX_set_cookie_verify_cb(SSL_CTX *ctx, int (*app_verify_cookie_cb)(SSL
/* the maximum length of the buffer given to callbacks containing the
* resulting identity/psk */
#define PSK_MAX_IDENTITY_LEN 128
#define PSK_MAX_PSK_LEN 64
#define PSK_MAX_PSK_LEN 256
void SSL_CTX_set_psk_client_callback(SSL_CTX *ctx,
unsigned int (*psk_client_callback)(SSL *ssl, const char *hint,
char *identity, unsigned int max_identity_len, unsigned char *psk,