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

/freebsd-10.2-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.c23 struct JPAKE_CTX { struct
72 static void JPAKE_CTX_init(JPAKE_CTX *ctx, const char *name,
93 static void JPAKE_CTX_release(JPAKE_CTX *ctx)
113 JPAKE_CTX *JPAKE_CTX_new(const char *name, const char *peer_name,
117 JPAKE_CTX *ctx = OPENSSL_malloc(sizeof *ctx);
124 void JPAKE_CTX_free(JPAKE_CTX *ctx)
185 const BIGNUM *zkpg, JPAKE_CTX *ctx)
213 JPAKE_CTX *ctx)
246 const BIGNUM *g, JPAKE_CTX *ctx)
253 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-10.2-release/crypto/openssl/apps/
H A Dapps.c2375 static JPAKE_CTX *jpake_init(const char *us, const char *them,
2382 JPAKE_CTX *ctx;
2413 static void jpake_send_step1(BIO *bconn, JPAKE_CTX *ctx)
2425 static void jpake_send_step2(BIO *bconn, JPAKE_CTX *ctx)
2436 static void jpake_send_step3a(BIO *bconn, JPAKE_CTX *ctx)
2447 static void jpake_send_step3b(BIO *bconn, JPAKE_CTX *ctx)
2477 static void jpake_receive_step1(JPAKE_CTX *ctx, BIO *bconn)
2491 static void jpake_receive_step2(JPAKE_CTX *ctx, BIO *bconn)
2504 static void jpake_receive_step3a(JPAKE_CTX *ctx, BIO *bconn)
2519 static void jpake_receive_step3b(JPAKE_CTX *ct
[all...]

Completed in 107 milliseconds