81 lines
2.1 KiB
Plaintext
81 lines
2.1 KiB
Plaintext
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
|
|
#
|