gpt4 book ai didi

mysql 中的 c++ 函数 make_scrambled_pa​​ssword 到 mariadb

转载 作者:行者123 更新时间:2023-11-29 17:51:54 28 4
gpt4 key购买 nike

我有一个关于 mariadb 的简单问题,我将 sql 从 mysql 转换为 mariadb

但是我在mariadb中不存在这个函数make_scrambled_pa​​ssword时遇到问题,请帮助我,这是代码c++

std::string mysql_hash_password(const char* tmp_pwd)
{
char hash_buf[2*SHA1_HASH_SIZE + 2] = "";
make_scrambled_password(hash_buf, tmp_pwd);
return hash_buf;
}

如何在C++代码中编辑它以使其与mariadb兼容 ……………………

最佳答案

使用该函数到mariadb

std::string mysql_hash_password(const char* tmp_pwd)
{
char hash_buf[2*SHA1_HASH_SIZE + 2] = "";
ma_make_scrambled_password(hash_buf, tmp_pwd);
return hash_buf;
}

关于mysql 中的 c++ 函数 make_scrambled_pa​​ssword 到 mariadb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49247294/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com