mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 08:56:17 +08:00
11 lines
184 B
Bash
Executable File
11 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
KEY=11223344556677881122334455667788
|
|
IV=11223344556677881122334455667788
|
|
|
|
echo hello | gmssl zuc -key $KEY -iv $IV -out zuc.bin
|
|
gmssl zuc -key $KEY -iv $IV -in zuc.bin
|
|
|
|
|