Files
se-algo/README.md
2025-09-03 17:00:14 +08:00

29 lines
816 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 算法c语言代码
## 📦 环境准备
确保本地已安装:
- scons 构建工具,用于自动化编译流程。
- build-essential 包含 gcc、make 等基础编译工具的依赖包
```bash
# Ubuntu/Debian
sudo apt-get install scons
sudo apt-get install build-essential
```
---
# com.zuc.zuc256代码结构说明
```
com.zuc.zuc256:
Zuc256Tables.java算法常量S 盒、D 数组)。
Zuc256State.java内部状态LFSR、R1、R2
Zuc256Util.java工具方法整数转换、位运算、线性变换、调试输出
Zuc256Core.java算法核心初始化、密钥字生成、密钥流生成
Zuc256EncryptCtx.java加解密上下文。
Zuc256MacCtx.javaMAC上下文。
Zuc256Demo.java演示程序明文加密、解密与结果验证
```
---