shell脚本---实现自动生成签名私匙和证书

shell脚本编辑如下:

[root@localhost shell]# vim siyaohezhengshu.sh 
#!/bin/bash
read -p "请输入存放证书的目录:" dir
if [ ! -d $dir ];then
    echo "该目录不存在"
        read -p "请输入徐需要创建的目录" dir
    mkdir $dir
fi
read -p "请输入密钥名称:" name
openssl genrsa -out ${dir}/${name}.key &>/dev/null    -----使用openssl生成私匙证书
if [ $? -eq 0  ];then
    echo "sucessful"
else 
    echo "fail"
fi
openssl req -new -x509 -key ${dir}/${name}.key -subj "/CN=commmon" -out ${dir}/${name}.crt &>/dev/null         ------subj选项可以生成证书时,非交互自动填写Common Name信息
if [ $? -eq 0  ];then
        echo "sucessful"
else
        echo "fail"
fi

shell脚本效果图:
[root@localhost shell]# sh siyaohezhengshu.sh 
请输入存放证书的目录:asdfg   
该目录不存在
请输入徐需要创建的目录asdffgghh
请输入密钥名称:as
sucessful
sucessful
 

猜你喜欢

转载自blog.csdn.net/zhydream77/article/details/81153614
今日推荐