Crypto API 질문
겨라
질문 제목 :crypto api 질문
쓰는방법은 알겠는데 왜 저렇게 써야하는질 모르겠음... 그냥 사용자가 입력한 암호키받고 그걸로 걍 바로 쓰면되지왜 해시값에 세션키를 처만드는지...
질문 내용 :
bool encryptfile( pchar szsource, pchar szdestination, pchar szpassword)//------------------------------------------------// 파라메터 정의// szsource : 입력으로 주어지는 파일명 원문을 담고 있다.// szdestination : 출력파일 이름. 암호화 되어 있다.// szpassword : 암호화에 사용될 키값대칭키 방식이기에 복호화에도 사용된다.
{file *hsource;file *hdestination;
hcryptprocryptprov hcryptprov;hcryptkey hkey;hcrypthash hhash;
pbyte pbbuffer;dword dwblocklen;dword dwbufferlen;dword dwcount;
// 입력 파일 열기if(hsource = fopen(szsource,rb)){ printf(the source plaintext file, %s, is open. \n, szsource);}else{ handleerror(error opening source plaintext file!);}
// 출력파일 열기if(hdestination = fopen(szdestination,wb)){printf(destination file %s is open. \n, szdestination);}else{handleerror(error opening destination ciphertext file!);}// 디폴트 csp의 핸들을 얻어온다. cryptoapi중 가장 첫번째 함수if(cryptacquirecontext(&hcryptprov,0,ms_enhanced_prov,prov_rsa_full,0 )){ printf(a cryptographic provider has been acquired. \n);}else{ handleerror(error during cryptacquirecontext!);}
//hash 오브젝트를 생성한다.if(cryptcreatehash( sp; hcryptprov, calg_md5, 0, 0, &hhash)){printf(a hash object has been created. \n);}else{handleerror(error during cryptcreatehash!\n);}
if(crypthashdata( hhash, (byte *)szpassword, strlen(szpassword), 0))//패스워드에 해쉬를 취한다.{printf(the password has been added to the hash. \n);}else{handleerror(error during crypthashdata. \n);}
if(cryptderivekey( hcryptprov, encrypt_algorithm, hhash, keylength, &hkey))// 해쉬 값을 이용하여 세션키를 생성한다.{ printf(an encryption key is derived from the password hash. \n);}else{ handleerror(error during cryptderivekey!\n);}
굵은글씨로 한부분 다 이해가안가요 ㅠㅠ
csp 핸들을 얻어오고, 해싱오브젝트를 만들어 사용자가 입력한 암호키로 해시값을 만들고만들어진 해시값으로 왜 세션키를 만들죠 ㅠㅠ?
이해가안대요 네이버에 찾아봐도 자료가 충분하지않고 소스만 덜렁있꼬 설명이 없어여 ...구글은 무능력한 영어지식에 좌절했슴미당... 수다님들 도와주세영..
쓰는방법은 알겠는데 왜 저렇게 써야하는질 모르겠음... 그냥 사용자가 입력한 암호키받고 그걸로 걍 바로 쓰면되지왜 해시값에 세션키를 처만드는지...
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |