'스터디/Security'에 해당되는 글 4건
- 2010/03/19 File encryption with OpenSSL
- 2008/12/16 [Book Review] Implementing NAP and NAC Security Technologies: The Complete Guide to Network Access Control
- 2008/12/16 [Book Review] Implementing 802.1x Security Solutions for Wired and Wireless Networks
- 2007/05/21 Microsoft Security Development Lifecycle(SDL)
○ OpenSSL에서 제공하는 EVP cryptography 추상화 계층과 BIO I/O 추상화 계층을 이용하여 파일에 대한 암/복호화를 수행하는 라이브러리
* 마이크로소프트웨어 2004.01월에 발간된 내용 참조
○ 간략한 사용 방법:
int main(int argc, char* argv[])
{
int is_encrypt = 0;
int result = 0;
if (argv[1][0] == 'e')
{
is_encrypt = 1;
}
else if (argv[1][0] == 'd')
{
is_encrypt = 0;
}
else
{
printf("[ERROR] invalid option. Only e (for encryption) and d (for decryption) allowed.\n");
return -1;
}
result = do_encryption(argv[2], argv[3], is_encrypt);
if (result != 0)
{
printf("[ERROR] Failed to encrypt.\n");
}
else
{
printf("[INFO] Successfully done.\n");
}
return 0;
}
○ 첨부된 파일
2008/12/16 16:45
[Book Review] Implementing NAP and NAC Security Technologies: The Complete Guide to Network Access Control
2008/12/16 16:45 in 스터디/Security

NAC와 NAP에 대한 가이드북.
NAC 솔루션 벤더의 제품에 대한 소개가 있다.
아래 링크를 참조.
http://www.amazon.com/exec/obidos/ASIN/0470238380/itbookscatalo-20
NAC 솔루션 벤더의 제품에 대한 소개가 있다.
아래 링크를 참조.
http://www.amazon.com/exec/obidos/ASIN/0470238380/itbookscatalo-20
2008/12/16 16:16
[Book Review] Implementing 802.1x Security Solutions for Wired and Wireless Networks
2008/12/16 16:16 in 스터디/Security

NAC의 핵심인 802.1x (Port-Based Authentication)에 관련된 내용을 간략하게 설명해 놓은 책.
약 300페이지가 안되는 350페이지 가량의 얇은 책이라서 보기에도 부담없고,
유무선 네트워크 환경에서 NAC를 구축하기 위해 필요한 내용을 확인할 수 있다.
책 내용은 아래 링크 참조
http://www.amazon.com/exec/obidos/ASIN/0470168609/itbookscatalo-20
정리정리 (-_-)/~

enc_lib.c
Prev
Rss Feed