2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1999-03-28 23:17:34 +00:00
|
|
|
*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1999-03-28 23:17:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/pkcs12.h>
|
1999-03-28 23:17:34 +00:00
|
|
|
|
2006-05-15 17:34:36 +00:00
|
|
|
/* PKCS#12 PBE algorithms now in static table */
|
1999-03-28 23:17:34 +00:00
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
void PKCS12_PBE_add(void)
|
1999-03-28 23:17:34 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2005-05-11 03:45:39 +00:00
|
|
|
int PKCS12_PBE_keyivgen(EVP_CIPHER_CTX *ctx, const char *pass, int passlen,
|
2015-01-22 03:40:55 +00:00
|
|
|
ASN1_TYPE *param, const EVP_CIPHER *cipher,
|
|
|
|
const EVP_MD *md, int en_de)
|
1999-03-28 23:17:34 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
PBEPARAM *pbe;
|
|
|
|
int saltlen, iter, ret;
|
|
|
|
unsigned char *salt;
|
|
|
|
unsigned char key[EVP_MAX_KEY_LENGTH], iv[EVP_MAX_IV_LENGTH];
|
2016-07-26 14:42:41 +00:00
|
|
|
int (*pkcs12_key_gen)(const char *pass, int passlen,
|
|
|
|
unsigned char *salt, int slen,
|
|
|
|
int id, int iter, int n,
|
|
|
|
unsigned char *out,
|
|
|
|
const EVP_MD *md_type);
|
|
|
|
|
2016-08-24 17:54:10 +00:00
|
|
|
pkcs12_key_gen = PKCS12_key_gen_utf8;
|
1999-06-06 13:07:13 +00:00
|
|
|
|
2015-09-01 12:56:58 +00:00
|
|
|
if (cipher == NULL)
|
|
|
|
return 0;
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/* Extract useful info from parameter */
|
2005-07-26 21:10:34 +00:00
|
|
|
|
2015-03-28 15:10:54 +00:00
|
|
|
pbe = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(PBEPARAM), param);
|
|
|
|
if (pbe == NULL) {
|
2015-01-22 03:40:55 +00:00
|
|
|
PKCS12err(PKCS12_F_PKCS12_PBE_KEYIVGEN, PKCS12_R_DECODE_ERROR);
|
|
|
|
return 0;
|
|
|
|
}
|
1999-06-06 13:07:13 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (!pbe->iter)
|
|
|
|
iter = 1;
|
|
|
|
else
|
|
|
|
iter = ASN1_INTEGER_get(pbe->iter);
|
|
|
|
salt = pbe->salt->data;
|
|
|
|
saltlen = pbe->salt->length;
|
2016-07-26 14:42:41 +00:00
|
|
|
if (!(*pkcs12_key_gen)(pass, passlen, salt, saltlen, PKCS12_KEY_ID,
|
|
|
|
iter, EVP_CIPHER_key_length(cipher), key, md)) {
|
2015-01-22 03:40:55 +00:00
|
|
|
PKCS12err(PKCS12_F_PKCS12_PBE_KEYIVGEN, PKCS12_R_KEY_GEN_ERROR);
|
|
|
|
PBEPARAM_free(pbe);
|
|
|
|
return 0;
|
|
|
|
}
|
2016-07-26 14:42:41 +00:00
|
|
|
if (!(*pkcs12_key_gen)(pass, passlen, salt, saltlen, PKCS12_IV_ID,
|
|
|
|
iter, EVP_CIPHER_iv_length(cipher), iv, md)) {
|
2015-01-22 03:40:55 +00:00
|
|
|
PKCS12err(PKCS12_F_PKCS12_PBE_KEYIVGEN, PKCS12_R_IV_GEN_ERROR);
|
|
|
|
PBEPARAM_free(pbe);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
PBEPARAM_free(pbe);
|
|
|
|
ret = EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, en_de);
|
|
|
|
OPENSSL_cleanse(key, EVP_MAX_KEY_LENGTH);
|
|
|
|
OPENSSL_cleanse(iv, EVP_MAX_IV_LENGTH);
|
|
|
|
return ret;
|
1999-03-28 23:17:34 +00:00
|
|
|
}
|