Lines Matching refs:s3a
2566 JPAKE_STEP3A s3a; in jpake_send_step3a() local
2568 JPAKE_STEP3A_init(&s3a); in jpake_send_step3a()
2569 JPAKE_STEP3A_generate(&s3a, ctx); in jpake_send_step3a()
2570 BIO_write(bconn, s3a.hhk, sizeof s3a.hhk); in jpake_send_step3a()
2572 JPAKE_STEP3A_release(&s3a); in jpake_send_step3a()
2636 JPAKE_STEP3A s3a; in jpake_receive_step3a() local
2639 JPAKE_STEP3A_init(&s3a); in jpake_receive_step3a()
2640 l = BIO_read(bconn, s3a.hhk, sizeof s3a.hhk); in jpake_receive_step3a()
2641 assert(l == sizeof s3a.hhk); in jpake_receive_step3a()
2642 if(!JPAKE_STEP3A_process(ctx, &s3a)) in jpake_receive_step3a()
2647 JPAKE_STEP3A_release(&s3a); in jpake_receive_step3a()