일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Xcode
- 앱스토어
- fido
- MSYS2
- openssl
- otpkey
- 안드로이드
- FIDO2
- kmip
- 애플
- MYSQL
- OSX
- git
- SWIFT
- albumbook
- WebAuthn
- SSL
- 2FA
- SwiftUI
- css
- 앨범북
- MFA
- SSH
- 앱리소스
- Nodejs
- apple
- OTP
- appres
- 인증
- Android
Archives
- Today
- Total
인디노트
OS X 에서 64 비트 OpenSSL 컴파일 옵션 본문
다음의 절차로 컴파일 한다. (64 비트)
make clean
./Configure darwin64-x86_64-cc -shared --prefix=/usr/local
./config no-asm enable-seed enable-cms enable-ssl2 enable-ssl3 no-idea no-md2 no-md4 no-mdc2 no-rc2 no-rc4 no-rc5 no-zlib-dynamic
make depend && make
make test
make install
OpenSSL 접속 테스트
openssl s_client -connect lgdrone.svc.entrust.kr:1443
brew install nmap
nmap --script ssl-enum-ciphers -p 1443 lgdrone.svc.entrust.kr
nmap --script ssl-enum-ciphers -p 443 example.com
You will get a response like this.
PORT STATE SERVICE
443/tcp open https
| ssl-enum-ciphers:
| SSLv3:
| ciphers:
| TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA - strong
| TLS_RSA_WITH_RC4_128_MD5 - strong
| TLS_RSA_WITH_RC4_128_SHA - strong
| compressors:
| NULL
| TLSv1.0:
| ciphers:
| TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA - strong
| TLS_RSA_WITH_RC4_128_MD5 - strong
| TLS_RSA_WITH_RC4_128_SHA - strong
| compressors:
| NULL
| TLSv1.1:
| ciphers:
| TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA - strong
| compressors:
| NULL
| TLSv1.2:
| ciphers:
| TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 - strong
| compressors:
| NULL
|_ least strength: strong
반응형
'인증기술 > OpenSSL' 카테고리의 다른 글
SSL_CTX_use_certificate (0) | 2018.11.03 |
---|---|
Example of secure server-client program using OpenSSL in C (0) | 2018.11.03 |
certserial.c (0) | 2018.10.16 |
certrenewal (0) | 2018.10.15 |
HTTPS통신을 위한 SSL인증서 발급하기(OpenSSL) (0) | 2018.10.15 |
Comments