Server IP : 185.86.78.101 / Your IP : 216.73.216.213 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/server/mysql/mysql-test/r/ |
Upload File : |
drop table if exists t1; select length(encrypt('foo', 'ff')) <> 0; length(encrypt('foo', 'ff')) <> 0 1 Warnings: Warning 1287 'ENCRYPT' is deprecated and will be removed in a future release. Please use AES_ENCRYPT instead create table t1 (name varchar(50), pw varchar(64)); insert into t1 values ('tom', password('my_pass')); set @pass='my_pass'; select name from t1 where name='tom' and pw=password(@pass); name tom select name from t1 where name='tom' and pw=password(@undefined); name drop table t1; select password('abc'); password('abc') *0D3CED9BEC10A777AEC23CCC353A8C08A633045E select password(''); password('') select password('gabbagabbahey'); password('gabbagabbahey') *B0F99D2963660DD7E16B751EC9EE2F17B6A68FA6 select length(password('1')); length(password('1')) 41 select length(encrypt('test')); length(encrypt('test')) 13 select encrypt('test','aa'); encrypt('test','aa') aaqPiZY5xR5l. select password(NULL); password(NULL) set old_passwords=0; select password('idkfa '); password('idkfa ') *2DC31D90647B4C1ABC9231563D2236E96C9A2DB2 select password('idkfa'); password('idkfa') *B669C9DAC3AA6F2254B03CDEF8DFDD6B2D1054BA select password(' idkfa'); password(' idkfa') *12B099E56BB7FE8D43C78FD834A9D1D11178D045 explain extended select password('idkfa '); id select_type table partitions type possible_keys key key_len ref rows filtered Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL NULL No tables used select encrypt('1234','_.'); encrypt('1234','_.') # Warnings: # 1287 'ENCRYPT' is deprecated and will be removed in a future release. Please use AES_ENCRYPT instead # # Bug #44767: invalid memory reads in password() # functions # CREATE TABLE t1(c1 MEDIUMBLOB); INSERT INTO t1 VALUES (REPEAT('a', 1024)); SELECT PASSWORD(c1) FROM t1; PASSWORD(c1) *82E58A2C08AAFE72C8EB523069CD8ADB33F78F58 DROP TABLE t1; End of 5.0 tests # # Start of 5.6 tests # # # Bug#13812875 ILLEGAL MIX OF COLLATIONS WITH FUNCTIONS THAT USED TO WORK # SET NAMES utf8; CREATE TABLE t1 (a varchar(1)); SELECT * FROM t1 WHERE a=password('a'); a DROP TABLE t1; SET NAMES latin1; # # End of 5.6 tests #