mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
13 lines
327 B
Markdown
13 lines
327 B
Markdown
![]() |
# openssl prime
|
||
|
|
||
|
> 소수를 계산하기 위한 OpenSSL 명령어.
|
||
|
> 더 많은 정보: <https://www.openssl.org/docs/manmaster/man1/openssl-prime.html>.
|
||
|
|
||
|
- 2048비트 소수를 생성하고 16진수로 표시:
|
||
|
|
||
|
`openssl prime -generate -bits 2048 -hex`
|
||
|
|
||
|
- 주어진 숫자가 소수인지 확인:
|
||
|
|
||
|
`openssl prime {{숫자}}`
|