add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,28 @@
# steghide
> 针对JPEG、BMP、WAV和AU文件格式的隐写工具。
> 更多信息:<https://github.com/StefanoDeVuono/steghide>。
- 在PNG中嵌入数据提示输入密码短语
`steghide embed --coverfile {{path/to/image.png}} --embedfile {{path/to/data.txt}}`
- 从WAV音频文件中提取数据
`steghide extract --stegofile {{path/to/sound.wav}}`
- 显示文件信息,尝试检测嵌入的文件:
`steghide info {{path/to/file.jpg}}`
- 在JPEG图像中嵌入数据使用最大压缩
`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --compress {{9}}`
- 获取支持的加密算法和模式列表:
`steghide encinfo`
- 在JPEG图像中嵌入加密数据例如使用CBC模式的Blowfish
`steghide embed --coverfile {{path/to/image.jpg}} --embedfile {{path/to/data.txt}} --encryption {{blowfish|...}} {{cbc|...}}`