Lines Matching refs:srp_ctx
1251 (s->srp_ctx.TLS_ext_srp_username_callback != NULL)) { in ssl_check_srp_ext_ClientHello()
1252 if (s->srp_ctx.login == NULL) { in ssl_check_srp_ext_ClientHello()
2553 if ((s->srp_ctx.N == NULL) || in tls_construct_server_key_exchange()
2554 (s->srp_ctx.g == NULL) || in tls_construct_server_key_exchange()
2555 (s->srp_ctx.s == NULL) || (s->srp_ctx.B == NULL)) { in tls_construct_server_key_exchange()
2559 r[0] = s->srp_ctx.N; in tls_construct_server_key_exchange()
2560 r[1] = s->srp_ctx.g; in tls_construct_server_key_exchange()
2561 r[2] = s->srp_ctx.s; in tls_construct_server_key_exchange()
2562 r[3] = s->srp_ctx.B; in tls_construct_server_key_exchange()
3072 if ((s->srp_ctx.A = BN_bin2bn(data, i, NULL)) == NULL) { in tls_process_cke_srp()
3076 if (BN_ucmp(s->srp_ctx.A, s->srp_ctx.N) >= 0 || BN_is_zero(s->srp_ctx.A)) { in tls_process_cke_srp()
3081 s->session->srp_username = OPENSSL_strdup(s->srp_ctx.login); in tls_process_cke_srp()