blob: dabdcdcc98d87b7bc21880ae81b5db5e68dfff9a (
plain) (
blame)
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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
void
librecrypt_set_custom_algorithms(LIBRECRYPT_CONTEXT *ctx, const struct librecrypt_algorithm *algos, size_t nalgos)
{
ctx->algos = algos;
ctx->nalgos = nalgos;
}
#else
int
main(void)
{
LIBRECRYPT_CONTEXT *ctx;
struct librecrypt_algorithm algos[5];
SET_UP_ALARM();
INIT_RESOURCE_TEST();
ctx = librecrypt_create_context();
assert(ctx != NULL);
EXPECT(ctx->algos == NULL);
EXPECT(ctx->nalgos == 0u);
librecrypt_set_custom_algorithms(ctx, algos, 5u);
EXPECT(ctx->algos == algos);
EXPECT(ctx->nalgos == 5u);
librecrypt_set_custom_algorithms(ctx, algos, 5u);
EXPECT(ctx->algos == algos);
EXPECT(ctx->nalgos == 5u);
librecrypt_set_custom_algorithms(ctx, algos, 4u);
EXPECT(ctx->algos == algos);
EXPECT(ctx->nalgos == 4u);
librecrypt_set_custom_algorithms(ctx, NULL, 0u);
EXPECT(ctx->algos == NULL);
EXPECT(ctx->nalgos == 0u);
librecrypt_free_context(ctx);
STOP_RESOURCE_TEST();
return 0;
}
#endif
|