zsteg-rust
zsteg recreate by rust
File Explorer
- config.toml
- ci.yml
- release.yml
- dependabot.yml
- crypt.bmp
- square.bmp
- alph1-surprise.bmp.7z
- logo1.png
- logo2.png
- logo4.png
- logo6.png
- logo8.png
- mouse1-long.png
- mouse1.png
- mouse2.png
- mouse4.png
- mouse6.png
- mouse8.png
- wbsteg_blowfish_pass_1.bmp
- wbsteg_cast128_pass_1.bmp
- wbsteg_enc_pass_pass.bmp
- wbsteg_enc_pass_pass_even.bmp
- wbsteg_mix_pass_1.bmp
- wbsteg_mix_pass_1_even.bmp
- wbsteg_mix_pass_foobar.bmp
- wbsteg_mix_pass_pass.bmp
- wbsteg_mixenc_pass_pass_even.bmp
- wbsteg_noenc.bmp
- wbsteg_noenc.png
- wbsteg_noenc_.bmp
- wbsteg_noenc_17.bmp
- wbsteg_noenc__.bmp
- wbsteg_noenc_even.bmp
- wbsteg_noenc_even2.bmp
- wbsteg_noenc_even_17.bmp
- wbsteg_noenc_even_17_.bmp
- wbsteg_noenc_ext_ABC.bmp
- wbsteg_rijndael_pass_1.bmp
- wbsteg_rijndael_pass_pass.bmp
- wbsteg_rijndael_pass_pass_even.bmp
- wbsteg_twofish_pass_1.bmp
- 5ZMGcCLxpcpsru03.g00000010.png
- 5ZMGcCLxpcpsru03.png
- stegano1.bmp
- 06_enc.png
- camouflage-password.png
- camouflage.png
- cats.png
- Code.png
- EasyBMP.bmp.7z
- extradata.png
- flower.png
- flower_rgb1.png
- flower_rgb2.png
- flower_rgb3.png
- flower_rgb4.png
- flower_rgb5.png
- flower_rgb6.png
- montenach-enc.png
- ndh2k12_sp113.bmp
- ndh2k12_sp113.bmp.7z
- openstego_q2.png
- openstego_send.png
- plte1.png
- polictf2012_f200.bmp.7z
- prime.png
- r3g2b3.png
- README
- Steganography_original.00000011.png
- Steganography_original.png
- stg300.png
- checker.rs
- extractor.rs
- file_cmd.rs
- hexdump.rs
- imageio.rs
- main.rs
- opts.rs
- result.rs
- .gitignore
- Cargo.lock
- Cargo.toml
- Cross.toml
- README.md
- README_CN.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo build
View Details ▼
cargo build
Compile a local package and all of its dependencies.
cargo {{[b|build]}}
Build the package or packages defined by the `Cargo.toml` manifest file in the local path:
cargo {{[b|build]}} {{[-r|--release]}}
Build artifacts in release mode, with optimizations:
cargo {{[b|build]}} --locked
Require that `Cargo.lock` is up to date:
git push
View Details ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
git tag
View Details ▼
git tag
Create, list, delete, or verify tags.
A tag is a static reference to a commit.
git tag
List all tags:
git tag {{tag_name}}
Create a tag with the given name pointing to the current commit:
git tag {{tag_name}} {{commit}}
Create a tag with the given name pointing to a given commit:
