No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / dist / heimdal / lib / hcrypto / pkcs12.c
blobff29b1200e79b52ab56ebd4e54b138dae837a3a8
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 __RCSID("$Heimdal: pkcs12.c 21155 2007-06-18 21:59:44Z lha $"
39 "$NetBSD$");
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <assert.h>
45 #include <pkcs12.h>
46 #include <bn.h>
48 #include <roken.h>
50 int
51 PKCS12_key_gen(const void *key, size_t keylen,
52 const void *salt, size_t saltlen,
53 int id, int iteration, size_t outkeysize,
54 void *out, const EVP_MD *md)
56 unsigned char *v, *I, hash[EVP_MAX_MD_SIZE];
57 unsigned int size, size_I = 0;
58 unsigned char idc = id;
59 EVP_MD_CTX ctx;
60 unsigned char *outp = out;
61 int i, vlen;
63 EVP_MD_CTX_init(&ctx);
65 vlen = EVP_MD_block_size(md);
66 v = malloc(vlen + 1);
67 if (v == NULL)
68 return 0;
70 I = calloc(1, vlen * 2);
71 if (I == NULL) {
72 free(v);
73 return 0;
76 if (salt && saltlen > 0) {
77 for (i = 0; i < vlen; i++)
78 I[i] = ((unsigned char*)salt)[i % saltlen];
79 size_I += vlen;
81 /*
82 * There is a diffrence between the no password string and the
83 * empty string, in the empty string the UTF16 NUL terminator is
84 * included into the string.
86 if (key && keylen >= 0) {
87 for (i = 0; i < vlen / 2; i++) {
88 I[(i * 2) + size_I] = 0;
89 I[(i * 2) + size_I + 1] = ((unsigned char*)key)[i % (keylen + 1)];
91 size_I += vlen;
94 while (1) {
95 BIGNUM *bnB, *bnOne;
97 if (!EVP_DigestInit_ex(&ctx, md, NULL)) {
98 free(I);
99 free(v);
100 return 0;
102 for (i = 0; i < vlen; i++)
103 EVP_DigestUpdate(&ctx, &idc, 1);
104 EVP_DigestUpdate(&ctx, I, size_I);
105 EVP_DigestFinal_ex(&ctx, hash, &size);
107 for (i = 1; i < iteration; i++)
108 EVP_Digest(hash, size, hash, &size, md, NULL);
110 memcpy(outp, hash, min(outkeysize, size));
111 if (outkeysize < size)
112 break;
113 outkeysize -= size;
114 outp += size;
116 for (i = 0; i < vlen; i++)
117 v[i] = hash[i % size];
119 bnB = BN_bin2bn(v, vlen, NULL);
120 bnOne = BN_new();
121 BN_set_word(bnOne, 1);
123 BN_uadd(bnB, bnB, bnOne);
125 for (i = 0; i < vlen * 2; i += vlen) {
126 BIGNUM *bnI;
127 int j;
129 bnI = BN_bin2bn(I + i, vlen, NULL);
131 BN_uadd(bnI, bnI, bnB);
133 j = BN_num_bytes(bnI);
134 if (j > vlen) {
135 assert(j == vlen + 1);
136 BN_bn2bin(bnI, v);
137 memcpy(I + i, v + 1, vlen);
138 } else {
139 memset(I + i, 0, vlen - j);
140 BN_bn2bin(bnI, I + i + vlen - j);
142 BN_free(bnI);
144 BN_free(bnB);
145 BN_free(bnOne);
146 size_I = vlen * 2;
149 EVP_MD_CTX_cleanup(&ctx);
150 free(I);
151 free(v);
153 return 1;