sm3案例'abc'
参考官方文档https://oscca.gov.cn/sca/xxgk/2010-12/17/1002389/files/302a3ada057c4a73830536d03e683110.pdf SM3加密过程以abc为例子 字符串 “abc” 的ASCII码为:a = 0x61 = 01100001b = 0x62 = 01100010c = 0x63 = 01100011所以,”abc” 的二进制表示为:01100001 01100010 0110001124位 消息填充 添加比特1 当前为: 01100001 01100010 01100011 1 当前位数: 25 位 补 “0” 直到长度满足 (长度 % 512) = 448 当前为: 01100001 01100010 01100011 1 0…0000(448-25 = 423个0) 当前位数: 448位 添加64位的长度信息abc共24位,用64位标识24即0000000000000018 H00000000 00000000 ...
IK重定向
模之屋:https://www.aplaybox.com/blender2.93:插件cats只支持到2.93UE5.2用于重定向动作,5.4有bugUE5.4用于自动贴合IKblender插件CATS:https://github.com/absolute-quantum/cats-blender-plugin导入pmx模型 前期准备blender模型单位与UE不同,直接导入UE会导致模型巨大https://blog.csdn.net/ONE_SIX_MIX/article/details/119879752 根据这个来 blender内操作 模型下好后使用cats导入blender,把blender内带的东西全删了 FixModel工具修复模型,修复一次可能不够,在姿态模式下移动骨骼看是否有bug,一般两次即可仅修复一次可能产生bug不要随意缩放模型,感觉身高不对要在导入时改好,导入后改会出bug,一个box默认2M 选择骨骼进入编辑模式 添加->单段骨骼(shift+A)将新增的骨骼Bone重命名为Root 点击Hips骨骼组 骨骼属性->关系->父级 ...
第一篇文章
这是我的第一篇文章
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
docker使用教程
docker就是用来把某人的程序完好运行在另一个人电脑上的小虚拟机 YSir2025.10.28以下内容只涉及Windows+WSL 参考:https://github.com/tech-shrimp/docker_installer.git 环境 打开virtual machine platform和适用于Linux的Windows子系统两个功能 运行俩命令 12wsl --set-default-version 2 //要求默认版本为wsl2wsl --update --web-download //安装wsl 下docker desktop https://www.docker.com/products/docker-desktop/ 命令 docker pull [<仓库地址>docker.io]/[<命名空间(作者名)>library]/niginx:[<版本号>latest],如果全部简化则为官方镜像docker pull niginx,一个镜像库由仓库地址+命名空间+镜像名组成 123456789101112...
git使用教程
git就是用来后悔和溯源的备份仓库配置外部仓库账号12$ git config --global user.name "John Doe"$ git config --global user.email johndoe@example.com 最好更改一下代理: 12git config --global http.proxy http://127.0.0.1:7897git config --global https.proxy https://127.0.0.1:7897 创建本地git仓库方法1.克隆别人的仓库git clone <address> 方法2. 在文件夹中执行git init以创建.git文件夹,即代码仓库 git add <需要入库的文件>把文件放入暂存区(git add .可以把文件夹的所有文件放入暂存区) git commit [-m "要备注的字符串"]提交暂存区的文件 此时仅仅只是导入本地仓库,还没进入GitHub 连接绑定远程仓库 git remote add <仓库别...