📄 func_encrypt_nossl.result
字号:
select des_encrypt("test", 'akeystr');des_encrypt("test", 'akeystr')NULLWarnings:Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_encrypt("test", 1);des_encrypt("test", 1)NULLWarnings:Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_encrypt("test", 9);des_encrypt("test", 9)NULLWarnings:Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_encrypt("test", 100);des_encrypt("test", 100)NULLWarnings:Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_encrypt("test", NULL);des_encrypt("test", NULL)NULLWarnings:Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_encrypt(NULL, NULL);des_encrypt(NULL, NULL)NULLWarnings:Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_decrypt("test", 'anotherkeystr');des_decrypt("test", 'anotherkeystr')NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_decrypt(1, 1);des_decrypt(1, 1)NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_decrypt(des_encrypt("test", 'thekey'));des_decrypt(des_encrypt("test", 'thekey'))NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect hex(des_encrypt("hello")),des_decrypt(des_encrypt("hello"));hex(des_encrypt("hello")) des_decrypt(des_encrypt("hello"))NULL NULLWarnings:Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingError 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_decrypt(des_encrypt("hello",4));des_decrypt(des_encrypt("hello",4))NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_decrypt(des_encrypt("hello",'test'),'test');des_decrypt(des_encrypt("hello",'test'),'test')NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect hex(des_encrypt("hello")),hex(des_encrypt("hello",5)),hex(des_encrypt("hello",'default_password'));hex(des_encrypt("hello")) hex(des_encrypt("hello",5)) hex(des_encrypt("hello",'default_password'))NULL NULL NULLWarnings:Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingError 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingError 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_decrypt(des_encrypt("hello"),'default_password');des_decrypt(des_encrypt("hello"),'default_password')NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect des_decrypt(des_encrypt("hello",4),'password4');des_decrypt(des_encrypt("hello",4),'password4')NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingSET @a=des_decrypt(des_encrypt("hello"));Warnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingflush des_key_file;select @a = des_decrypt(des_encrypt("hello"));@a = des_decrypt(des_encrypt("hello"))NULLselect hex("hello");hex("hello")68656C6C6Fselect hex(des_decrypt(des_encrypt("hello",4),'password2'));hex(des_decrypt(des_encrypt("hello",4),'password2'))NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it workingselect hex(des_decrypt(des_encrypt("hello","hidden")));hex(des_decrypt(des_encrypt("hello","hidden")))NULLWarnings:Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -