mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 17:06:25 +08:00
11 lines
199 B
Bash
Executable File
11 lines
199 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2014 - 2018 The GmSSL Project. All rights reserved.
|
|
|
|
gmssl=gmssl
|
|
randfile=rand.bin
|
|
|
|
num=32
|
|
$gmssl rand -hex $num
|
|
$gmssl rand -base64 $num
|
|
$gmssl rand -out $randfile $num
|