Searched refs:username (Results 1 – 10 of 10) sorted by relevance
/openssl/doc/man3/ |
H A D | SRP_VBASE_new.pod | 27 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 D | SSL_CTX_set_srp_password.pod | 64 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 D | SRP_create_verifier.pod | 99 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 D | SRP_user_pwd_new.pod | 38 The SRP_user_pwd_set1_ids() function sets the username to B<id> and the optional
|
/openssl/crypto/srp/ |
H A D | srp_vfy.c | 516 static SRP_user_pwd *find_user(SRP_VBASE *vb, char *username) in find_user() argument 526 if (strcmp(user->id, username) == 0) in find_user() 547 SRP_user_pwd *SRP_VBASE_get_by_user(SRP_VBASE *vb, char *username) in SRP_VBASE_get_by_user() argument 549 return find_user(vb, username); in SRP_VBASE_get_by_user() 557 SRP_user_pwd *SRP_VBASE_get1_by_user(SRP_VBASE *vb, char *username) in SRP_VBASE_get1_by_user() argument 568 if ((user = find_user(vb, username)) != NULL) in SRP_VBASE_get1_by_user() 582 if (!SRP_user_pwd_set1_ids(user, username, NULL)) in SRP_VBASE_get1_by_user() 594 || !EVP_DigestUpdate(ctxt, username, strlen(username)) in SRP_VBASE_get1_by_user()
|
/openssl/test/ |
H A D | srptest.c | 29 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 D | sslapitest.c | 7440 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 D | srp.h.in | 116 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 D | openssl-s_client.pod.in | 799 Set the SRP username to the specified value. This option is deprecated. 807 SRP username for the second ClientHello message. This option is deprecated.
|
/openssl/crypto/err/ |
H A D | openssl.txt | 1463 SSL_R_INVALID_SRP_USERNAME:357:invalid srp username
|
Completed in 48 milliseconds