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

@@ -1,3 +1,15 @@
#ifndef OPENSSL_EXPERIMENTAL_JPAKE
#include <stdio.h>
int main(int argc, char *argv[])
{
printf("No J-PAKE support\n");
return(0);
}
#else
#include <openssl/jpake.h>
#include <openssl/err.h>
@@ -174,3 +186,5 @@ int main(int argc, char **argv)
return 0;
}
#endif