func_encrypt_nossl.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. select des_encrypt("test", 'akeystr');
  2. des_encrypt("test", 'akeystr')
  3. NULL
  4. Warnings:
  5. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  6. select des_encrypt("test", 1);
  7. des_encrypt("test", 1)
  8. NULL
  9. Warnings:
  10. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  11. select des_encrypt("test", 9);
  12. des_encrypt("test", 9)
  13. NULL
  14. Warnings:
  15. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  16. select des_encrypt("test", 100);
  17. des_encrypt("test", 100)
  18. NULL
  19. Warnings:
  20. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  21. select des_encrypt("test", NULL);
  22. des_encrypt("test", NULL)
  23. NULL
  24. Warnings:
  25. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  26. select des_encrypt(NULL, NULL);
  27. des_encrypt(NULL, NULL)
  28. NULL
  29. Warnings:
  30. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  31. select des_decrypt("test", 'anotherkeystr');
  32. des_decrypt("test", 'anotherkeystr')
  33. NULL
  34. Warnings:
  35. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  36. select des_decrypt(1, 1);
  37. des_decrypt(1, 1)
  38. NULL
  39. Warnings:
  40. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  41. select des_decrypt(des_encrypt("test", 'thekey'));
  42. des_decrypt(des_encrypt("test", 'thekey'))
  43. NULL
  44. Warnings:
  45. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  46. select hex(des_encrypt("hello")),des_decrypt(des_encrypt("hello"));
  47. hex(des_encrypt("hello")) des_decrypt(des_encrypt("hello"))
  48. NULL NULL
  49. Warnings:
  50. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  51. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  52. select des_decrypt(des_encrypt("hello",4));
  53. des_decrypt(des_encrypt("hello",4))
  54. NULL
  55. Warnings:
  56. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  57. select des_decrypt(des_encrypt("hello",'test'),'test');
  58. des_decrypt(des_encrypt("hello",'test'),'test')
  59. NULL
  60. Warnings:
  61. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  62. select hex(des_encrypt("hello")),hex(des_encrypt("hello",5)),hex(des_encrypt("hello",'default_password'));
  63. hex(des_encrypt("hello")) hex(des_encrypt("hello",5)) hex(des_encrypt("hello",'default_password'))
  64. NULL NULL NULL
  65. Warnings:
  66. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  67. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  68. Error 1289 The 'des_encrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  69. select des_decrypt(des_encrypt("hello"),'default_password');
  70. des_decrypt(des_encrypt("hello"),'default_password')
  71. NULL
  72. Warnings:
  73. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  74. select des_decrypt(des_encrypt("hello",4),'password4');
  75. des_decrypt(des_encrypt("hello",4),'password4')
  76. NULL
  77. Warnings:
  78. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  79. SET @a=des_decrypt(des_encrypt("hello"));
  80. Warnings:
  81. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  82. flush des_key_file;
  83. select @a = des_decrypt(des_encrypt("hello"));
  84. @a = des_decrypt(des_encrypt("hello"))
  85. NULL
  86. select hex("hello");
  87. hex("hello")
  88. 68656C6C6F
  89. select hex(des_decrypt(des_encrypt("hello",4),'password2'));
  90. hex(des_decrypt(des_encrypt("hello",4),'password2'))
  91. NULL
  92. Warnings:
  93. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working
  94. select hex(des_decrypt(des_encrypt("hello","hidden")));
  95. hex(des_decrypt(des_encrypt("hello","hidden")))
  96. NULL
  97. Warnings:
  98. Error 1289 The 'des_decrypt' feature is disabled; you need MySQL built with '--with-openssl' to have it working