aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/crypto.h
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2008-10-26 18:40:52 +0000
committerBen Laurie <ben@openssl.org>2008-10-26 18:40:52 +0000
commit6caa4edd3e6410aff7c80011d905abcd3c1b1143 (patch)
treecd78ea1921ac59740eb310b88bad25d642dc281a /crypto/crypto.h
parentac786241a2607ea14cf29e3a0e4ad1aae672a8df (diff)
downloadopenssl-6caa4edd3e6410aff7c80011d905abcd3c1b1143.tar.gz
Add JPAKE.
Diffstat (limited to 'crypto/crypto.h')
-rw-r--r--crypto/crypto.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/crypto.h b/crypto/crypto.h
index efde768937..ff09bc5fb4 100644
--- a/crypto/crypto.h
+++ b/crypto/crypto.h
@@ -366,6 +366,7 @@ int CRYPTO_is_mem_check_on(void);
#define is_MemCheck_on() CRYPTO_is_mem_check_on()
#define OPENSSL_malloc(num) CRYPTO_malloc((int)num,__FILE__,__LINE__)
+#define OPENSSL_strdup(str) CRYPTO_strdup((str),__FILE__,__LINE__)
#define OPENSSL_realloc(addr,num) \
CRYPTO_realloc((char *)addr,(int)num,__FILE__,__LINE__)
#define OPENSSL_realloc_clean(addr,old_num,num) \
@@ -489,6 +490,7 @@ void CRYPTO_get_mem_debug_functions(void (**m)(void *,int,const char *,int,int),
void *CRYPTO_malloc_locked(int num, const char *file, int line);
void CRYPTO_free_locked(void *);
void *CRYPTO_malloc(int num, const char *file, int line);
+char *CRYPTO_strdup(const char *str, const char *file, int line);
void CRYPTO_free(void *);
void *CRYPTO_realloc(void *addr,int num, const char *file, int line);
void *CRYPTO_realloc_clean(void *addr,int old_num,int num,const char *file,