Lines Matching refs:srp_ctx
1342 (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) { in ssl_check_srp_ext_ClientHello()
1343 if (s->srp_ctx.login == NULL) { in ssl_check_srp_ext_ClientHello()
2653 if ((s->srp_ctx.N == NULL) || in tls_construct_server_key_exchange()
2654 (s->srp_ctx.g == NULL) || in tls_construct_server_key_exchange()
2655 (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) { in tls_construct_server_key_exchange()
2659 r[0] = s->srp_ctx.N; in tls_construct_server_key_exchange()
2660 r[1] = s->srp_ctx.g; in tls_construct_server_key_exchange()
2661 r[2] = s->srp_ctx.s; in tls_construct_server_key_exchange()
2662 r[3] = s->srp_ctx.B; in tls_construct_server_key_exchange()
3174 if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) { in tls_process_cke_srp()
3178 if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0 || BN_is_zero(s->srp_ctx.A)) { in tls_process_cke_srp()
3183 s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login); in tls_process_cke_srp()