diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-02 21:56:22 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-02 21:56:22 +0000 |
commit | f9944b07bb7623a9c27802c5e83d5f0e3f0e8597 (patch) | |
tree | ff8a2cf391c0545377e28f14a441259b3347d0d4 /protocols/WhatsApp/src/OpenSSL/evp.h | |
parent | e1db6121679890cb4032144a8c1d05b5effcefc4 (diff) |
crash fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@4868 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src/OpenSSL/evp.h')
-rw-r--r-- | protocols/WhatsApp/src/OpenSSL/evp.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/protocols/WhatsApp/src/OpenSSL/evp.h b/protocols/WhatsApp/src/OpenSSL/evp.h index 077cca7d09..bee216913d 100644 --- a/protocols/WhatsApp/src/OpenSSL/evp.h +++ b/protocols/WhatsApp/src/OpenSSL/evp.h @@ -193,6 +193,12 @@ struct env_md_st int ctx_size; /* how big does the ctx->md_data need to be */ } /* EVP_MD */; +typedef int evp_sign_method(int type,const unsigned char *m, + unsigned int m_length,unsigned char *sigret, + unsigned int *siglen, void *key); +typedef int evp_verify_method(int type,const unsigned char *m, + unsigned int m_length,const unsigned char *sigbuf, + unsigned int siglen, void *key); int EVP_MD_block_size(const EVP_MD *md); int EVP_DigestInit_ex(EVP_MD_CTX *ctx, const EVP_MD *type, void *impl); |