Add missing ',' between parameters [HEIMDAL-599]
[heimdal.git] / lib / hcrypto / test_pkcs12.c
blob9c22ccd2fc8909863d5c26a46fe1e5726f55e4f2
1 /*
2 * Copyright (c) 2006 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #ifdef HAVE_CONFIG_H
35 #include <config.h>
36 #endif
38 #ifdef RCSID
39 RCSID("$Id$");
40 #endif
42 #include <sys/types.h>
43 #include <limits.h>
44 #include <stdio.h>
45 #include <stdlib.h>
46 #include <string.h>
48 #include <pkcs12.h>
49 #include <evp.h>
51 struct tests {
52 int id;
53 const char *password;
54 void *salt;
55 size_t saltsize;
56 int iterations;
57 size_t keylen;
58 const EVP_MD * (*md)(void);
59 void *key;
62 struct tests p12_pbe_tests[] = {
63 { PKCS12_KEY_ID,
64 NULL,
65 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
66 16,
67 100,
68 16,
69 EVP_sha1,
70 "\xd7\x2d\xd4\xcf\x7e\xe1\x89\xc5\xb5\xe5\x31\xa7\x63\x2c\xf0\x4b"
72 { PKCS12_KEY_ID,
73 "",
74 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
75 16,
76 100,
77 16,
78 EVP_sha1,
79 "\x00\x54\x91\xaf\xc0\x6a\x76\xc3\xf9\xb6\xf2\x28\x1a\x15\xd9\xfe"
81 { PKCS12_KEY_ID,
82 "foobar",
83 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
84 16,
85 100,
86 16,
87 EVP_sha1,
88 "\x79\x95\xbf\x3f\x1c\x6d\xe\xe8\xd3\x71\xc4\x94\xd\xb\x18\xb5"
90 { PKCS12_KEY_ID,
91 "foobar",
92 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
93 16,
94 2048,
95 24,
96 EVP_sha1,
97 "\x0b\xb5\xe\xa6\x71\x0d\x0c\xf7\x44\xe\xe1\x9b\xb5\xdf\xf1\xdc\x4f\xb0\xca\xe\xee\x4f\xb9\xfd"
99 { PKCS12_IV_ID,
100 "foobar",
101 "\x3c\xdf\x84\x32\x59\xd3\xda\x69",
103 2048,
105 EVP_sha1,
106 "\xbf\x9a\x12\xb7\x26\x69\xfd\x05"
111 static int
112 test_pkcs12_pbe(struct tests *t)
114 void *key;
115 size_t pwlen = 0;
117 key = malloc(t->keylen);
118 if (t->password)
119 pwlen = strlen(t->password);
121 if (!PKCS12_key_gen(t->password, pwlen,
122 t->salt, t->saltsize,
123 t->id, t->iterations, t->keylen,
124 key, t->md()))
126 printf("key_gen failed\n");
127 return 1;
130 if (memcmp(t->key, key, t->keylen) != 0) {
131 printf("incorrect key\n");
132 free(key);
133 return 1;
135 free(key);
136 return 0;
140 main(int argc, char **argv)
142 int ret = 0;
143 int i;
145 for (i = 0; i < sizeof(p12_pbe_tests)/sizeof(p12_pbe_tests[0]); i++)
146 ret += test_pkcs12_pbe(&p12_pbe_tests[i]);
148 return ret;