• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3
4KEY=11223344556677881122334455667788
5IV=11223344556677881122334455667788
6
7echo hello | gmssl zuc -key $KEY -iv $IV -out zuc.bin
8gmssl zuc -key $KEY -iv $IV -in zuc.bin
9
10
11