Coverage Report

Created: 2018-08-29 13:53

/src/openssl/crypto/pkcs12/p12_p8e.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the OpenSSL license (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <stdio.h>
11
#include "internal/cryptlib.h"
12
#include <openssl/pkcs12.h>
13
#include "internal/x509_int.h"
14
15
X509_SIG *PKCS8_encrypt(int pbe_nid, const EVP_CIPHER *cipher,
16
                        const char *pass, int passlen,
17
                        unsigned char *salt, int saltlen, int iter,
18
                        PKCS8_PRIV_KEY_INFO *p8inf)
19
0
{
20
0
    X509_SIG *p8 = NULL;
21
0
    X509_ALGOR *pbe;
22
0
23
0
    if (pbe_nid == -1)
24
0
        pbe = PKCS5_pbe2_set(cipher, iter, salt, saltlen);
25
0
    else if (EVP_PBE_find(EVP_PBE_TYPE_PRF, pbe_nid, NULL, NULL, 0))
26
0
        pbe = PKCS5_pbe2_set_iv(cipher, iter, salt, saltlen, NULL, pbe_nid);
27
0
    else {
28
0
        ERR_clear_error();
29
0
        pbe = PKCS5_pbe_set(pbe_nid, iter, salt, saltlen);
30
0
    }
31
0
    if (!pbe) {
32
0
        PKCS12err(PKCS12_F_PKCS8_ENCRYPT, ERR_R_ASN1_LIB);
33
0
        return NULL;
34
0
    }
35
0
    p8 = PKCS8_set0_pbe(pass, passlen, p8inf, pbe);
36
0
    if (p8 == NULL) {
37
0
        X509_ALGOR_free(pbe);
38
0
        return NULL;
39
0
    }
40
0
41
0
    return p8;
42
0
}
43
44
X509_SIG *PKCS8_set0_pbe(const char *pass, int passlen,
45
                         PKCS8_PRIV_KEY_INFO *p8inf, X509_ALGOR *pbe)
46
0
{
47
0
    X509_SIG *p8;
48
0
    ASN1_OCTET_STRING *enckey;
49
0
50
0
    enckey =
51
0
        PKCS12_item_i2d_encrypt(pbe, ASN1_ITEM_rptr(PKCS8_PRIV_KEY_INFO),
52
0
                                pass, passlen, p8inf, 1);
53
0
    if (!enckey) {
54
0
        PKCS12err(PKCS12_F_PKCS8_SET0_PBE, PKCS12_R_ENCRYPT_ERROR);
55
0
        return NULL;
56
0
    }
57
0
58
0
    p8 = OPENSSL_zalloc(sizeof(*p8));
59
0
60
0
    if (p8 == NULL) {
61
0
        PKCS12err(PKCS12_F_PKCS8_SET0_PBE, ERR_R_MALLOC_FAILURE);
62
0
        ASN1_OCTET_STRING_free(enckey);
63
0
        return NULL;
64
0
    }
65
0
    p8->algor = pbe;
66
0
    p8->digest = enckey;
67
0
68
0
    return p8;
69
0
}