#ifndef __RSKSW_ARIA_H_
#define __RSKSW_ARIA_H_

#include "RSKSW_define.h"

#ifdef __cplusplus
extern "C" {
#endif
	
int RSKSW_ARIA_CBC_Decrypt 	(KSW_BYTE *psOutput, KSW_BYTE *psInput, KSW_WORD nInputLength, KSW_BYTE *psIV, KSW_BYTE *psKey, KSW_WORD psKeyLength);
int RSKSW_ARIA_CBC_Encrypt 	(KSW_BYTE *psOutput, KSW_BYTE *psInput, KSW_WORD nInputLength, KSW_BYTE *psIV,  KSW_BYTE *psKey, KSW_WORD psKeyLength);

#ifdef __cplusplus
}
#endif

#endif
