Home
last modified time | relevance | path

Searched refs:username (Results 1 – 10 of 10) sorted by relevance

/openssl/doc/man3/
H A DSRP_VBASE_new.pod27 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username);
28 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username);
39 to hide the fact that it doesn't have a verifier for a particular username,
50 flag base64(verifier) base64(salt) username gNid userinfo(optional)
61 whose username matches B<username>. It replaces the deprecated
66 username. When using SRP as a TLS authentication mechanism, this will cause
H A DSSL_CTX_set_srp_password.pod64 The SSL_CTX_set_srp_username() function sets the SRP username for B<ctx>. This
80 that is invoked when an SRP username is found in a ClientHello.
85 username. The username can be obtained by calling SSL_get_srp_username().
121 B<user> is the username, B<pass> the password and B<grp> the SRP group parameters
130 The SSL_get_srp_username() function returns the SRP username for B<s>, or from
151 const char *username = "username";
157 if (!SSL_CTX_set_srp_username(ctx, username))
172 char *username = SSL_get_srp_username(s);
174 SRP_user_pwd *user_pwd = SRP_VBASE_get1_by_user(srpData, username);
H A DSRP_create_verifier.pod99 const char *username = "username";
107 SRP_create_verifier_BN_ex(username, password, &salt, &verifier, gN->N, gN->g,
111 SRP_user_pwd_set1_ids(pwd, username, NULL);
H A DSRP_user_pwd_new.pod38 The SRP_user_pwd_set1_ids() function sets the username to B<id> and the optional
/openssl/crypto/srp/
H A Dsrp_vfy.c514 static SRP_user_pwd *find_user(SRP_VBASE *vb, char *username) in find_user() argument
524 if (strcmp(user->id, username) == 0) in find_user()
545 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username) in SRP_VBASE_get_by_user() argument
547 return find_user(vb, username); in SRP_VBASE_get_by_user()
555 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username) in SRP_VBASE_get1_by_user() argument
566 if ((user = find_user(vb, username)) != NULL) in SRP_VBASE_get1_by_user()
580 if (!SRP_user_pwd_set1_ids(user, username, NULL)) in SRP_VBASE_get1_by_user()
592 || !EVP_DigestUpdate(ctxt, username, strlen(username)) in SRP_VBASE_get1_by_user()
/openssl/test/
H A Dsrptest.c29 static int run_srp(const char *username, const char *client_pass, in run_srp() argument
51 if (!TEST_true(SRP_create_verifier_BN(username, server_pass, in run_srp()
92 x = SRP_Calc_x(s, username, client_pass); in run_srp()
H A Dsslapitest.c7440 char *username; in ssl_srp_cb() local
7443 username = SSL_get_srp_username(s); in ssl_srp_cb()
7444 if (username == NULL) { in ssl_srp_cb()
7449 user = SRP_VBASE_get1_by_user(vbase, username); in ssl_srp_cb()
/openssl/include/openssl/
H A Dsrp.h.in116 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username);
206 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username);
/openssl/doc/man1/
H A Dopenssl-s_client.pod.in797 Set the SRP username to the specified value. This option is deprecated.
805 SRP username for the second ClientHello message. This option is deprecated.
/openssl/crypto/err/
H A Dopenssl.txt1463 SSL_R_INVALID_SRP_USERNAME:357:invalid srp username

Completed in 58 milliseconds