Lines Matching refs:s3a
2570 JPAKE_STEP3A s3a; in jpake_send_step3a() local
2572 JPAKE_STEP3A_init(&s3a); in jpake_send_step3a()
2573 JPAKE_STEP3A_generate(&s3a, ctx); in jpake_send_step3a()
2574 BIO_write(bconn, s3a.hhk, sizeof s3a.hhk); in jpake_send_step3a()
2576 JPAKE_STEP3A_release(&s3a); in jpake_send_step3a()
2640 JPAKE_STEP3A s3a; in jpake_receive_step3a() local
2643 JPAKE_STEP3A_init(&s3a); in jpake_receive_step3a()
2644 l = BIO_read(bconn, s3a.hhk, sizeof s3a.hhk); in jpake_receive_step3a()
2645 assert(l == sizeof s3a.hhk); in jpake_receive_step3a()
2646 if(!JPAKE_STEP3A_process(ctx, &s3a)) in jpake_receive_step3a()
2651 JPAKE_STEP3A_release(&s3a); in jpake_receive_step3a()