cryptTest.c
1.64 KB
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
#include <mcrypt.h>
#include <stdlib.h>
#include <sys/types.h>
#include "runtest.h"
#include "token/cclass.h"
#include "token/crypt.h"
#define DATA "testdata to be encrypted"
#define PASSWORD "1234"
const char testname[] = "cryptTest";
CRYPT crypt = NULL;
static
int
__setUp()
{
crypt = new(CRYPT, MCRYPT_RIJNDAEL_256, MCRYPT_CFB);
ASSERT_INSTANCE_OF(CRYPT, crypt);
return TEST_OK;
}
int (* const setUp)() = __setUp;
static
int
__tearDown()
{
if (NULL != crypt) {
ASSERT_OBJECT(crypt);
delete(&crypt);
}
return TEST_OK;
}
int (* const tearDown)() = __tearDown;
static
int
testEncryptDecryptCycle()
{
size_t length = strlen(DATA);;
void * encrypted = crypt_encrypt(crypt, DATA, PASSWORD, &length);
void * decrypted = crypt_decrypt(crypt, encrypted, PASSWORD, &length);
ASSERT_NOT_NULL(encrypted);
ASSERT_NOT_NULL(decrypted);
ASSERT_MEM_EQUAL(DATA, decrypted, length);
free(encrypted);
free(decrypted);
return TEST_OK;
}
static
int
testCryptDifference()
{
size_t length1, length2;
void * encrypted1, * encrypted2;
length1 = length2 = strlen(DATA);
encrypted1 = crypt_encrypt(crypt, DATA, PASSWORD, &length1);
encrypted2 = crypt_encrypt(crypt, DATA, PASSWORD, &length2);
ASSERT_EQUAL(length1, length2);
ASSERT_NOT_NULL(encrypted1);
ASSERT_NOT_NULL(encrypted2);
ASSERT_MEM_NOT_EQUAL(encrypted1, encrypted2, length1);
free(encrypted1);
free(encrypted2);
return TEST_OK;
}
const testfunc tests[] = {
testEncryptDecryptCycle,
testCryptDifference
};
const size_t count = FUNCS_COUNT(tests);
// vim: set et ts=4 sw=4: