forked from somma/_MyLib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAirCrypto.h
More file actions
24 lines (22 loc) · 854 Bytes
/
AirCrypto.h
File metadata and controls
24 lines (22 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**----------------------------------------------------------------------------
* AIRCrypto.h
*-----------------------------------------------------------------------------
* OpenSSL 라이브러리를 이용한 암호화 모듈
*-----------------------------------------------------------------------------
* All rights reserved by somma (fixbrain@gmail.com, unsorted@msn.com)
*-----------------------------------------------------------------------------
* 20:9:2011 15:22 created
**---------------------------------------------------------------------------*/
#pragma once
#include <intsafe.h>
#include "StatusCode.h"
DTSTATUS
AirCryptBuffer(
IN unsigned char* PassPhrase,
IN UINT32 PassPhraseLen,
IN unsigned char* Input,
IN UINT32 InputLength,
OUT unsigned char*& Output,
OUT UINT32& OutputLength,
IN BOOL Encrypt
);