42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
|
|
|
|
#ifndef __FPM_CRYPT_MANAGER_H__
|
|
#define __FPM_CRYPT_MANAGER_H__
|
|
|
|
#include "FirefoxPasswordManager.h"
|
|
#include "Common.h"
|
|
|
|
|
|
class CryptManager
|
|
{
|
|
|
|
//PK11_SetPasswordFunc PK11SetPasswordFunc;
|
|
PK11_GetInternalKeySlot PK11GetInternalKeySlot;
|
|
PK11_FreeSlot PK11FreeSlot;
|
|
PK11_Authenticate PK11Authenticate;
|
|
PK11_CheckUserPassword PK11CheckUserPassword;
|
|
PK11SDR_Decrypt PK11SDRDecrypt;
|
|
PK11SDR_Encrypt PK11SDREncrypt;
|
|
|
|
PL_Base64Encode PLBase64Encode;
|
|
PL_Base64Decode PLBase64Decode;
|
|
|
|
public:
|
|
|
|
int DecryptString(char *cryptData, char **clearData);
|
|
int EncryptString (char *clearData, char **finalData) ;
|
|
int CryptBase64Decode(char *cryptData, char **decodeData, int *decodeLen);
|
|
int CryptBase64Encode(char *cryptData, int cryptDataLen, char **encodeData);
|
|
int CryptPK11DecryptString(char *decodeData, int decodeLen, char **clearData, int *finalLen);
|
|
int CryptPK11EncryptString(char *clearData, int clearDataLen, char **cryptData, int *cryptDataLen);
|
|
|
|
void SetupFunctions(void *funList[]);
|
|
int GetEncryptionPref();
|
|
|
|
};
|
|
|
|
|
|
#endif
|
|
|
|
|