diff options
author | unknown <peter@mysql.com> | 2002-11-30 16:31:58 +0300 |
---|---|---|
committer | unknown <peter@mysql.com> | 2002-11-30 16:31:58 +0300 |
commit | 05ba93c2793a1ae79f560a0fc153056f3d39ce43 (patch) | |
tree | 8cb72ffc1f46d5e546f302958453ce4a83d26d5e /sql/password.c | |
parent | 14754ce141aa6a061a94fa668094b0602edd69c5 (diff) | |
download | mariadb-git-05ba93c2793a1ae79f560a0fc153056f3d39ce43.tar.gz |
SCRUM: Secure auth
Implement mysql_change_user
Get rid of double user search at authentication
Some cleanups
client/mysqladmin.c:
Fix long line
include/mysql_com.h:
Fix long lines
libmysql/libmysql.c:
mysql_change_user() for new auth + some fixes
sql/password.c:
Add author info so who is guilty in errors would be known :)
sql/sql_acl.cc:
Move class definitions to .h
sql/sql_acl.h:
Add class definitions
sql/sql_parse.cc:
Get rid of double user search. Implement mysql_change_user
Diffstat (limited to 'sql/password.c')
-rw-r--r-- | sql/password.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/password.c b/sql/password.c index b9eb6012354..98cac1e07d0 100644 --- a/sql/password.c +++ b/sql/password.c @@ -48,6 +48,8 @@ This authentication needs 2 packet round trips instead of one but it is much stronger. Now if one will steal mysql database content he will not be able to break into MySQL. + + New Password handling functions by Peter Zaitsev *****************************************************************************/ |