1. 미들웨어이야기/02. Apache
OpenSSL의 소개
OSSW(Open Source System SoftWare
2014. 10. 31. 14:11
OpenSSL의 소개
o 정의와 특징
- TLS(Transport Layer Security)와 SSL(Secure Sockets Layer) 프로토콜을 구현하는 오픈소스
- C언어로 작성되어 범용 암호화 라이브러리 지원
o 알고리즘
- 암호문(cipher)
AES, DES, Triple DES, CAST-128, IDEA, RC2, RC4, IC5, blowfish, Camellia, GOST 28147-89
- 암호학의 해시 함수
MD5, MD2, SHA-1, SHA-2, MDC-2
- 공개 키 암호 방식
RSA, DSA, Diffie-Hellman key exchange, Elliptic curve cryptography, GOST R 34.10-2001
o OS별 OpenSSL 확인 방법
- SUN
pkginfo -l | grep -i ssl
- AIX
lslpp -l | grep -i ssl
- Linux
openssl version –a
o 참고
- OpenSSL Project URL : http://www.openssl.org/
by. 현주희 (10월)