- 博客(26)
- 资源 (7)
- 收藏
- 关注
原创 Win10/Win11暂停更新方法
打开注册表到此路径新建FlightSettingsMaxPauseDays设置值越大越好到电脑设置->Windows更新将更新时间延后到很久之后win10:高级选项,设置暂停更新日期win11:直接设置即可
2024-12-27 11:22:57
212
原创 Inno Setup磁盘跨越必须启用,因为程序大于21000000000
Inno Setup磁盘跨越必须启用,因为程序大于21000000000
2024-05-28 14:00:20
1604
bcrypt库C/C++使用
bcrypt库C/C++使用
```cpp
#include "bcrypt/BCrypt.hpp"
#include <iostream>
int main(){
std::string password = "123456";
//此函数用于生成hash字符串
std::string hash = BCrypt::generateHash(password);
//用于判断密码和数据库password加密后的字符串是否匹配
std::cout << BCrypt::validatePassword(password,hash) << std::endl;
std::cout << BCrypt::validatePassword("123456",hash) << std::endl;
return 0;
}
```
2024-04-11
清理电脑垃圾
清理电脑的缓存垃圾和深度清理,保证电脑运行速度,电脑运行慢如何清除垃圾,链接地址:http://jingyan.baidu.com/article/09ea3ede3b3b96c0afde395d.html,可以一键清理,方便快捷
2018-09-26
TA创建的收藏夹 TA关注的收藏夹
TA关注的人