sh ecccsr.sh
user_ecc_sign.key: It corresponds to the private key of the user certificate. It needs to be securely stored and can be used in SDK.user_ecc_sign.csr: Used to apply for a user certificate on the TBaaS Console.user_ecc_tls.key: It corresponds to the private key of the user's TLS certificate. It needs to be securely stored and can be used in SDK.user_ecc_tls.csr: Used to apply for a user TLS certificate on the TBaaS Console.temp file is the private key corresponding to the user certificate.openssl ecparam -name prime256v1 -genkey -out temp
openssl_user.cnf file used in the command is included in the download tool.openssl req -batch -config openssl_user.cnf -key temp -new -sha256 -out user_ecc_sign.csr
temp private key to a pkcs#8 format user_ecc_sign.key file for subsequent configuration and identification in fabric-sdk.openssl pkcs8 -topk8 -in temp -nocrypt -out user_ecc_sign.key
temp file is the private key corresponding to the user tls certificate.openssl ecparam -name prime256v1 -genkey -out temp
openssl_user.cnf file used in the command is included in the download tool.openssl req -batch -config openssl_user.cnf -key temp -new -sha256 -out user_ecc_tls.csr
temp private key to a ser_ecc_tls.key file in pkcs#8 format, subsequently used for configuration and identification in fabric-sdk.openssl pkcs8 -topk8 -in temp -nocrypt -out user_ecc_tls.key
Feedback