Searched refs:JPAKE_CTX (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/crypto/openssl/crypto/jpake/
H A Djpake.h24 typedef struct JPAKE_CTX JPAKE_CTX; typedef in typeref:struct:JPAKE_CTX
54 JPAKE_CTX *JPAKE_CTX_new(const char *name, const char *peer_name,
57 void JPAKE_CTX_free(JPAKE_CTX *ctx);
64 int JPAKE_STEP1_generate(JPAKE_STEP1 *send, JPAKE_CTX *ctx);
65 int JPAKE_STEP1_process(JPAKE_CTX *ctx, const JPAKE_STEP1 *received);
73 int JPAKE_STEP2_generate(JPAKE_STEP2 *send, JPAKE_CTX *ctx);
74 int JPAKE_STEP2_process(JPAKE_CTX *ctx, const JPAKE_STEP2 *received);
83 int JPAKE_STEP3A_generate(JPAKE_STEP3A *send, JPAKE_CTX *ctx);
84 int JPAKE_STEP3A_process(JPAKE_CTX *ct
[all...]
H A Djpake.c24 struct JPAKE_CTX { struct
73 static void JPAKE_CTX_init(JPAKE_CTX *ctx, const char *name,
94 static void JPAKE_CTX_release(JPAKE_CTX *ctx)
114 JPAKE_CTX *JPAKE_CTX_new(const char *name, const char *peer_name,
118 JPAKE_CTX *ctx = OPENSSL_malloc(sizeof *ctx);
125 void JPAKE_CTX_free(JPAKE_CTX *ctx)
186 const BIGNUM *zkpg, JPAKE_CTX *ctx)
214 JPAKE_CTX *ctx)
247 const BIGNUM *g, JPAKE_CTX *ctx)
254 static void genrand(JPAKE_CTX *ct
[all...]
H A Djpaketest.c26 static int run_jpake(JPAKE_CTX *alice, JPAKE_CTX *bob)
109 JPAKE_CTX *alice;
110 JPAKE_CTX *bob;
/freebsd-9.3-release/crypto/openssl/apps/
H A Dapps.c2224 static JPAKE_CTX *jpake_init(const char *us, const char *them,
2231 JPAKE_CTX *ctx;
2262 static void jpake_send_step1(BIO *bconn, JPAKE_CTX *ctx)
2274 static void jpake_send_step2(BIO *bconn, JPAKE_CTX *ctx)
2285 static void jpake_send_step3a(BIO *bconn, JPAKE_CTX *ctx)
2296 static void jpake_send_step3b(BIO *bconn, JPAKE_CTX *ctx)
2326 static void jpake_receive_step1(JPAKE_CTX *ctx, BIO *bconn)
2340 static void jpake_receive_step2(JPAKE_CTX *ctx, BIO *bconn)
2353 static void jpake_receive_step3a(JPAKE_CTX *ctx, BIO *bconn)
2368 static void jpake_receive_step3b(JPAKE_CTX *ct
[all...]

Completed in 151 milliseconds