openssl3.2/test/certs - 040 - EC cert with named curve signed by named curve ca

文章目录

    • [openssl3.2/test/certs - 040 - EC cert with named curve signed by named curve ca](#openssl3.2/test/certs - 040 - EC cert with named curve signed by named curve ca)
    • 概述
    • 笔记
    • END

openssl3.2/test/certs - 040 - EC cert with named curve signed by named curve ca

概述

openssl3.2 - 官方demo学习 - test - certs

笔记

bash 复制代码
/*!
* \file D:\my_dev\my_local_git_prj\study\openSSL\test_certs\040\my_openssl_linux_doc_040.txt
* \note openssl3.2/test/certs - 040 - EC cert with named curve signed by named curve ca
*/

// --------------------------------------------------------------------------------
// official bash script
// --------------------------------------------------------------------------------
# openssl3.2/test/certs - 040 - EC cert with named curve signed by named curve ca
./mkcert.sh genee server.example ee-key-ec-named-named ee-cert-ec-named-named ca-key-ec-named ca-cert-ec-named

// --------------------------------------------------------------------------------
// openssl cmd line parse
// --------------------------------------------------------------------------------
// cmd 1
openssl genpkey -algorithm rsa -pkeyopt rsa_keygen_bits:2048 -out ee-key-ec-named-named.pem 

// cmd 2
// cfg_exp_040_cmd2.txt
string_mask=utf8only
[req]
prompt = no
distinguished_name = dn
[dn]
CN = server.example

openssl req -new -sha256 -key ee-key-ec-named-named.pem -config cfg_exp_040_cmd2.txt -out req_exp040_cmd2.pem

// cmd 3
// cfg_exp040_cmd3.txt
subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid, issuer
basicConstraints = CA:false

extendedKeyUsage = serverAuth
[alts]
subjectAltName = @alts
DNS=server.example
[alts]

openssl x509 -req -sha256 -out ee-cert-ec-named-named.pem -extfile cfg_exp040_cmd3.txt -CA ca-cert-ec-named.pem -CAkey ca-key-ec-named.pem -set_serial 2 -days 36525 -in req_exp040_cmd2.pem

// --------------------------------------------------------------------------------
// openssl log
// --------------------------------------------------------------------------------
openssl genpkey -algorithm rsa -pkeyopt rsa_keygen_bits:2048 -out ee-key-ec-named-named.pem 
openssl req -new -sha256 -key ee-key-ec-named-named.pem -config /dev/fd/63 

-config /dev/fd/63 => /home/lostspeed/openssl/openssl-3.2.0_debian/test/certs/my_openssl_linux_log.txt



string_mask=utf8only
[req]
prompt = no
distinguished_name = dn
[dn]
CN = server.example
openssl x509 -req -sha256 -out ee-cert-ec-named-named.pem -extfile /dev/fd/63 -CA ca-cert-ec-named.pem -CAkey ca-key-ec-named.pem -set_serial 2 -days 36525 

-extfile /dev/fd/63 => /home/lostspeed/openssl/openssl-3.2.0_debian/test/certs/my_openssl_linux_log.txt



subjectKeyIdentifier = hash
authorityKeyIdentifier = keyid, issuer
basicConstraints = CA:false

extendedKeyUsage = serverAuth
[alts]
subjectAltName = @alts
DNS=server.example




[alts]

END

相关推荐
赖small强5 天前
【ZeroRange WebRTC】OpenSSL 与 WebRTC:原理、集成与实践指南
webrtc·openssl·x.509·证书验证·tls/dtls
openHiTLS密码开源社区8 天前
密码学系统的核心防护:FUZZ测试(模糊测试)技术原理与行业实践
openssl·fuzz测试·模糊测试·形式化验证·openhitls
coder4_1 个月前
OpenSSL 加密算法与证书管理全解析:从基础到私有 CA 实战
https·openssl·ssl/tls·加密算法·ca证书
王小义笔记1 个月前
windows电脑如何执行openssl rand命令
windows·openssl
Humbunklung2 个月前
VC++ 使用OpenSSL创建RSA密钥PEM文件
开发语言·c++·openssl
深耕AI2 个月前
Win64OpenSSL-3_5_2.exe【安装步骤】
openssl
看那山瞧那水2 个月前
DELPHI 利用OpenSSL实现加解密,证书(X.509)等功能
delphi·openssl
洋哥网络科技3 个月前
openssl升级
openssl
Lazy Dave3 个月前
gmssl私钥文件格式
网络安全·ssl·openssl
沉在嵌入式的鱼4 个月前
RK3588移植Openssl库
linux·rk3588·openssl