os/ossrv/ssl/libcrypto/src/crypto/pkcs12/p12_key.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* p12_key.c */
sl@0
     2
/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
sl@0
     3
 * project 1999.
sl@0
     4
 */
sl@0
     5
/* ====================================================================
sl@0
     6
 * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
sl@0
     7
 *
sl@0
     8
 * Redistribution and use in source and binary forms, with or without
sl@0
     9
 * modification, are permitted provided that the following conditions
sl@0
    10
 * are met:
sl@0
    11
 *
sl@0
    12
 * 1. Redistributions of source code must retain the above copyright
sl@0
    13
 *    notice, this list of conditions and the following disclaimer. 
sl@0
    14
 *
sl@0
    15
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    16
 *    notice, this list of conditions and the following disclaimer in
sl@0
    17
 *    the documentation and/or other materials provided with the
sl@0
    18
 *    distribution.
sl@0
    19
 *
sl@0
    20
 * 3. All advertising materials mentioning features or use of this
sl@0
    21
 *    software must display the following acknowledgment:
sl@0
    22
 *    "This product includes software developed by the OpenSSL Project
sl@0
    23
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
sl@0
    24
 *
sl@0
    25
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
sl@0
    26
 *    endorse or promote products derived from this software without
sl@0
    27
 *    prior written permission. For written permission, please contact
sl@0
    28
 *    licensing@OpenSSL.org.
sl@0
    29
 *
sl@0
    30
 * 5. Products derived from this software may not be called "OpenSSL"
sl@0
    31
 *    nor may "OpenSSL" appear in their names without prior written
sl@0
    32
 *    permission of the OpenSSL Project.
sl@0
    33
 *
sl@0
    34
 * 6. Redistributions of any form whatsoever must retain the following
sl@0
    35
 *    acknowledgment:
sl@0
    36
 *    "This product includes software developed by the OpenSSL Project
sl@0
    37
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
sl@0
    38
 *
sl@0
    39
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
sl@0
    40
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    41
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
sl@0
    42
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
sl@0
    43
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
sl@0
    44
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
sl@0
    45
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
sl@0
    46
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    47
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
sl@0
    48
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
sl@0
    49
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
sl@0
    50
 * OF THE POSSIBILITY OF SUCH DAMAGE.
sl@0
    51
 * ====================================================================
sl@0
    52
 *
sl@0
    53
 * This product includes cryptographic software written by Eric Young
sl@0
    54
 * (eay@cryptsoft.com).  This product includes software written by Tim
sl@0
    55
 * Hudson (tjh@cryptsoft.com).
sl@0
    56
 *
sl@0
    57
 */
sl@0
    58
sl@0
    59
#include <stdio.h>
sl@0
    60
#include "cryptlib.h"
sl@0
    61
#include <openssl/pkcs12.h>
sl@0
    62
#include <openssl/bn.h>
sl@0
    63
sl@0
    64
/* Uncomment out this line to get debugging info about key generation */
sl@0
    65
/*#define DEBUG_KEYGEN*/
sl@0
    66
#ifdef DEBUG_KEYGEN
sl@0
    67
#include <openssl/bio.h>
sl@0
    68
extern BIO *bio_err;
sl@0
    69
void h__dump (unsigned char *p, int len);
sl@0
    70
#endif
sl@0
    71
sl@0
    72
/* PKCS12 compatible key/IV generation */
sl@0
    73
#ifndef min
sl@0
    74
#define min(a,b) ((a) < (b) ? (a) : (b))
sl@0
    75
#endif
sl@0
    76
sl@0
    77
EXPORT_C int PKCS12_key_gen_asc(const char *pass, int passlen, unsigned char *salt,
sl@0
    78
	     int saltlen, int id, int iter, int n, unsigned char *out,
sl@0
    79
	     const EVP_MD *md_type)
sl@0
    80
{
sl@0
    81
	int ret;
sl@0
    82
	unsigned char *unipass;
sl@0
    83
	int uniplen;
sl@0
    84
	if(!pass) {
sl@0
    85
		unipass = NULL;
sl@0
    86
		uniplen = 0;
sl@0
    87
	} else if (!asc2uni(pass, passlen, &unipass, &uniplen)) {
sl@0
    88
		PKCS12err(PKCS12_F_PKCS12_KEY_GEN_ASC,ERR_R_MALLOC_FAILURE);
sl@0
    89
		return 0;
sl@0
    90
	}
sl@0
    91
	ret = PKCS12_key_gen_uni(unipass, uniplen, salt, saltlen,
sl@0
    92
						 id, iter, n, out, md_type);
sl@0
    93
	if(unipass) {
sl@0
    94
		OPENSSL_cleanse(unipass, uniplen);	/* Clear password from memory */
sl@0
    95
		OPENSSL_free(unipass);
sl@0
    96
	}
sl@0
    97
	return ret;
sl@0
    98
}
sl@0
    99
sl@0
   100
EXPORT_C int PKCS12_key_gen_uni(unsigned char *pass, int passlen, unsigned char *salt,
sl@0
   101
	     int saltlen, int id, int iter, int n, unsigned char *out,
sl@0
   102
	     const EVP_MD *md_type)
sl@0
   103
{
sl@0
   104
	unsigned char *B, *D, *I, *p, *Ai;
sl@0
   105
	int Slen, Plen, Ilen, Ijlen;
sl@0
   106
	int i, j, u, v;
sl@0
   107
	BIGNUM *Ij, *Bpl1;	/* These hold Ij and B + 1 */
sl@0
   108
	EVP_MD_CTX ctx;
sl@0
   109
#ifdef  DEBUG_KEYGEN
sl@0
   110
	unsigned char *tmpout = out;
sl@0
   111
	int tmpn = n;
sl@0
   112
#endif
sl@0
   113
sl@0
   114
#if 0
sl@0
   115
	if (!pass) {
sl@0
   116
		PKCS12err(PKCS12_F_PKCS12_KEY_GEN_UNI,ERR_R_PASSED_NULL_PARAMETER);
sl@0
   117
		return 0;
sl@0
   118
	}
sl@0
   119
#endif
sl@0
   120
sl@0
   121
	EVP_MD_CTX_init(&ctx);
sl@0
   122
#ifdef  DEBUG_KEYGEN
sl@0
   123
	fprintf(stderr, "KEYGEN DEBUG\n");
sl@0
   124
	fprintf(stderr, "ID %d, ITER %d\n", id, iter);
sl@0
   125
	fprintf(stderr, "Password (length %d):\n", passlen);
sl@0
   126
	h__dump(pass, passlen);
sl@0
   127
	fprintf(stderr, "Salt (length %d):\n", saltlen);
sl@0
   128
	h__dump(salt, saltlen);
sl@0
   129
#endif
sl@0
   130
	v = EVP_MD_block_size (md_type);
sl@0
   131
	u = EVP_MD_size (md_type);
sl@0
   132
	D = OPENSSL_malloc (v);
sl@0
   133
	Ai = OPENSSL_malloc (u);
sl@0
   134
	B = OPENSSL_malloc (v + 1);
sl@0
   135
	Slen = v * ((saltlen+v-1)/v);
sl@0
   136
	if(passlen) Plen = v * ((passlen+v-1)/v);
sl@0
   137
	else Plen = 0;
sl@0
   138
	Ilen = Slen + Plen;
sl@0
   139
	I = OPENSSL_malloc (Ilen);
sl@0
   140
	Ij = BN_new();
sl@0
   141
	Bpl1 = BN_new();
sl@0
   142
	if (!D || !Ai || !B || !I || !Ij || !Bpl1) {
sl@0
   143
		PKCS12err(PKCS12_F_PKCS12_KEY_GEN_UNI,ERR_R_MALLOC_FAILURE);
sl@0
   144
		return 0;
sl@0
   145
	}
sl@0
   146
	for (i = 0; i < v; i++) D[i] = id;
sl@0
   147
	p = I;
sl@0
   148
	for (i = 0; i < Slen; i++) *p++ = salt[i % saltlen];
sl@0
   149
	for (i = 0; i < Plen; i++) *p++ = pass[i % passlen];
sl@0
   150
	for (;;) {
sl@0
   151
		EVP_DigestInit_ex(&ctx, md_type, NULL);
sl@0
   152
		EVP_DigestUpdate(&ctx, D, v);
sl@0
   153
		EVP_DigestUpdate(&ctx, I, Ilen);
sl@0
   154
		EVP_DigestFinal_ex(&ctx, Ai, NULL);
sl@0
   155
		for (j = 1; j < iter; j++) {
sl@0
   156
			EVP_DigestInit_ex(&ctx, md_type, NULL);
sl@0
   157
			EVP_DigestUpdate(&ctx, Ai, u);
sl@0
   158
			EVP_DigestFinal_ex(&ctx, Ai, NULL);
sl@0
   159
		}
sl@0
   160
		memcpy (out, Ai, min (n, u));
sl@0
   161
		if (u >= n) {
sl@0
   162
			OPENSSL_free (Ai);
sl@0
   163
			OPENSSL_free (B);
sl@0
   164
			OPENSSL_free (D);
sl@0
   165
			OPENSSL_free (I);
sl@0
   166
			BN_free (Ij);
sl@0
   167
			BN_free (Bpl1);
sl@0
   168
			EVP_MD_CTX_cleanup(&ctx);
sl@0
   169
#ifdef DEBUG_KEYGEN
sl@0
   170
			fprintf(stderr, "Output KEY (length %d)\n", tmpn);
sl@0
   171
			h__dump(tmpout, tmpn);
sl@0
   172
#endif
sl@0
   173
			return 1;	
sl@0
   174
		}
sl@0
   175
		n -= u;
sl@0
   176
		out += u;
sl@0
   177
		for (j = 0; j < v; j++) B[j] = Ai[j % u];
sl@0
   178
		/* Work out B + 1 first then can use B as tmp space */
sl@0
   179
		BN_bin2bn (B, v, Bpl1);
sl@0
   180
		BN_add_word (Bpl1, 1);
sl@0
   181
		for (j = 0; j < Ilen ; j+=v) {
sl@0
   182
			BN_bin2bn (I + j, v, Ij);
sl@0
   183
			BN_add (Ij, Ij, Bpl1);
sl@0
   184
			BN_bn2bin (Ij, B);
sl@0
   185
			Ijlen = BN_num_bytes (Ij);
sl@0
   186
			/* If more than 2^(v*8) - 1 cut off MSB */
sl@0
   187
			if (Ijlen > v) {
sl@0
   188
				BN_bn2bin (Ij, B);
sl@0
   189
				memcpy (I + j, B + 1, v);
sl@0
   190
#ifndef PKCS12_BROKEN_KEYGEN
sl@0
   191
			/* If less than v bytes pad with zeroes */
sl@0
   192
			} else if (Ijlen < v) {
sl@0
   193
				memset(I + j, 0, v - Ijlen);
sl@0
   194
				BN_bn2bin(Ij, I + j + v - Ijlen); 
sl@0
   195
#endif
sl@0
   196
			} else BN_bn2bin (Ij, I + j);
sl@0
   197
		}
sl@0
   198
	}
sl@0
   199
}
sl@0
   200
#ifdef DEBUG_KEYGEN
sl@0
   201
void h__dump (unsigned char *p, int len)
sl@0
   202
{
sl@0
   203
	for (; len --; p++) fprintf(stderr, "%02X", *p);
sl@0
   204
	fprintf(stderr, "\n");	
sl@0
   205
}
sl@0
   206
#endif