No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / dist / heimdal / lib / hcrypto / test_pkcs12.c
blobb3cb5dde13530a49614834001e17bbe212407d1e
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("$Heimdal: test_pkcs12.c 20662 2007-05-10 22:01:54Z lha $"
40 "$NetBSD$");
41 #endif
43 #include <sys/types.h>
44 #include <limits.h>
45 #include <stdio.h>
46 #include <stdlib.h>
47 #include <string.h>
49 #include <pkcs12.h>
50 #include <evp.h>
52 struct tests {
53 int id;
54 const char *password;
55 void *salt;
56 size_t saltsize;
57 int iterations;
58 size_t keylen;
59 const EVP_MD * (*md)(void);
60 void *key;
63 struct tests p12_pbe_tests[] = {
64 { PKCS12_KEY_ID,
65 NULL,
66 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
67 16,
68 100,
69 16,
70 EVP_sha1,
71 "\xd7\x2d\xd4\xcf\x7e\xe1\x89\xc5\xb5\xe5\x31\xa7\x63\x2c\xf0\x4b"
73 { PKCS12_KEY_ID,
74 "",
75 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
76 16,
77 100,
78 16,
79 EVP_sha1,
80 "\x00\x54\x91\xaf\xc0\x6a\x76\xc3\xf9\xb6\xf2\x28\x1a\x15\xd9\xfe"
82 { PKCS12_KEY_ID,
83 "foobar",
84 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
85 16,
86 100,
87 16,
88 EVP_sha1,
89 "\x79\x95\xbf\x3f\x1c\x6d\xe\xe8\xd3\x71\xc4\x94\xd\xb\x18\xb5"
91 { PKCS12_KEY_ID,
92 "foobar",
93 "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00",
94 16,
95 2048,
96 24,
97 EVP_sha1,
98 "\x0b\xb5\xe\xa6\x71\x0d\x0c\xf7\x44\xe\xe1\x9b\xb5\xdf\xf1\xdc\x4f\xb0\xca\xe\xee\x4f\xb9\xfd"
100 { PKCS12_IV_ID,
101 "foobar",
102 "\x3c\xdf\x84\x32\x59\xd3\xda\x69",
104 2048,
106 EVP_sha1,
107 "\xbf\x9a\x12\xb7\x26\x69\xfd\x05"
112 static int
113 test_pkcs12_pbe(struct tests *t)
115 void *key;
116 size_t pwlen = 0;
118 key = malloc(t->keylen);
119 if (t->password)
120 pwlen = strlen(t->password);
122 if (!PKCS12_key_gen(t->password, pwlen,
123 t->salt, t->saltsize,
124 t->id, t->iterations, t->keylen,
125 key, t->md()))
127 printf("key_gen failed\n");
128 return 1;
131 if (memcmp(t->key, key, t->keylen) != 0) {
132 printf("incorrect key\n");
133 free(key);
134 return 1;
136 free(key);
137 return 0;
141 main(int argc, char **argv)
143 int ret = 0;
144 int i;
146 for (i = 0; i < sizeof(p12_pbe_tests)/sizeof(p12_pbe_tests[0]); i++)
147 ret += test_pkcs12_pbe(&p12_pbe_tests[i]);
149 return ret;