-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcodec.h
115 lines (85 loc) · 3.1 KB
/
codec.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*
///////////////////////////////////////////////////////////////////////////////
// Name: codec.h
// Purpose:
// Author: Ulrich Telle
// Modified by:
// Created: 2006-12-06
// Copyright: (c) Ulrich Telle
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
/// \file codec.h Interface of the codec class
*/
#ifndef _CODEC_H_
#define _CODEC_H_
#ifdef __cplusplus
extern "C" {
#endif
#if defined(__BORLANDC__)
#define __STDC__ 1
#endif
#if defined(__BORLANDC__)
#undef __STDC__
#endif
/*
// ATTENTION: Macro similar to that in pager.c
// TODO: Check in case of new version of SQLite
*/
#define WX_PAGER_MJ_PGNO(x) ((PENDING_BYTE/(x))+1)
#ifdef __cplusplus
} /* End of the 'extern "C"' block */
#endif
#include "rijndael.h"
#define CODEC_TYPE_AES128 1
#define CODEC_TYPE_AES256 2
#ifndef CODEC_TYPE
#define CODEC_TYPE CODEC_TYPE_AES128
#endif
#if CODEC_TYPE == CODEC_TYPE_AES256
#define KEYLENGTH 32
#define CODEC_SHA_ITER 4001
#else
#define KEYLENGTH 16
#endif
typedef struct _Codec
{
int m_isEncrypted;
int m_hasReadKey;
unsigned char m_readKey[KEYLENGTH];
int m_hasWriteKey;
unsigned char m_writeKey[KEYLENGTH];
Rijndael* m_aes;
Btree* m_bt; /* Pointer to B-tree used by DB */
unsigned char m_page[SQLITE_MAX_PAGE_SIZE+24];
} Codec;
void CodecInit(Codec* codec);
void CodecTerm(Codec* codec);
void CodecCopy(Codec* codec, Codec* other);
void CodecGenerateReadKey(Codec* codec, char* userPassword, int passwordLength);
void CodecGenerateWriteKey(Codec* codec, char* userPassword, int passwordLength);
void CodecEncrypt(Codec* codec, int page, unsigned char* data, int len, int useWriteKey);
void CodecDecrypt(Codec* codec, int page, unsigned char* data, int len);
void CodecCopyKey(Codec* codec, int read2write);
void CodecSetIsEncrypted(Codec* codec, int isEncrypted);
void CodecSetHasReadKey(Codec* codec, int hasReadKey);
void CodecSetHasWriteKey(Codec* codec, int hasWriteKey);
void CodecSetBtree(Codec* codec, Btree* bt);
int CodecIsEncrypted(Codec* codec);
int CodecHasReadKey(Codec* codec);
int CodecHasWriteKey(Codec* codec);
Btree* CodecGetBtree(Codec* codec);
unsigned char* CodecGetPageBuffer(Codec* codec);
void CodecGenerateEncryptionKey(Codec* codec, char* userPassword, int passwordLength,
unsigned char encryptionKey[KEYLENGTH]);
void CodecPadPassword(Codec* codec, char* password, int pswdlen, unsigned char pswd[32]);
void CodecRC4(Codec* codec, unsigned char* key, int keylen,
unsigned char* textin, int textlen,
unsigned char* textout);
void CodecGetMD5Binary(Codec* codec, unsigned char* data, int length, unsigned char* digest);
#if CODEC_TYPE == CODEC_TYPE_AES256
void CodecGetSHABinary(Codec* codec, unsigned char* data, int length, unsigned char* digest);
#endif
void CodecGenerateInitialVector(Codec* codec, int seed, unsigned char iv[16]);
void CodecAES(Codec* codec, int page, int encrypt, unsigned char encryptionKey[KEYLENGTH],
unsigned char* datain, int datalen, unsigned char* dataout);
#endif