소스 검색

updated openssl (with curves + ec) one-liners

- signed-off-by: trimstray <trimstray@gmail.com>
pull/63/head
trimstray 5 년 전
부모
커밋
2f368288e1
1개의 변경된 파일15개의 추가작업 그리고 6개의 파일을 삭제
  1. +15
    -6
      README.md

+ 15
- 6
README.md 파일 보기

@@ -1611,12 +1611,22 @@ EOF
))
```

###### List available EC curves

```bash
openssl ecparam -list_curves
```

###### Generate ECDSA private key

```bash
# _curve: X25519, prime256v1, secp521r1, secp384r1
# _curve: prime256v1, secp521r1, secp384r1
( _fd="private.key" ; _curve="prime256v1" ; \
openssl ecparam -out ${_fd} -name ${_curve} -genkey )

# _curve: X25519
( _fd="private.key" ; _curve="x25519" ; \
openssl genpkey -algorithm ${_curve} -out ${_fd} )
```

###### Print ECDSA private and public keys
@@ -1624,17 +1634,16 @@ openssl ecparam -out ${_fd} -name ${_curve} -genkey )
```bash
( _fd="private.key" ; \
openssl ec -in ${_fd} -noout -text )
```

###### List available EC curves

```bash
openssl ecparam -list_curves
# For x25519 only extracting public key
( _fd="private.key" ; _fd_pub="public.key" ; \
openssl pkey -in ${_fd} -pubout -out ${_fd_pub} )
```

###### Generate private key with csr (ECC)

```bash
# _curve: prime256v1, secp521r1, secp384r1
( _fd="domain.com.key" ; _fd_csr="domain.com.csr" ; _curve="prime256v1" ; openssl ecparam -out ${_fd} -name ${_curve} -genkey ; openssl req -new -key ${_fd} -out ${_fd_csr} -sha256 )
```



불러오는 중...
취소
저장