mirror of
https://github.com/minio/minio.git
synced 2024-12-24 06:05:55 -05:00
[doc] fix openssl command for ECDSA key generation (#5616)
This change fixes the command for generating ECDSA private keys. The current command produces private key files which cannot be parsed by the server. Fixes #5614
This commit is contained in:
parent
973ff2fabd
commit
889dd387f1
@ -37,7 +37,7 @@ go run generate_cert.go -ca --host "10.10.0.3"
|
|||||||
|
|
||||||
1. **ECDSA:**
|
1. **ECDSA:**
|
||||||
```sh
|
```sh
|
||||||
openssl ecparam -genkey -name prime256v1 -out private.key
|
openssl ecparam -genkey -name prime256v1 | openssl ec -out private.key
|
||||||
```
|
```
|
||||||
or protect the private key additionally with a password:
|
or protect the private key additionally with a password:
|
||||||
```sh
|
```sh
|
||||||
|
Loading…
Reference in New Issue
Block a user