Coverage Report

Created: 2018-08-29 13:53

/src/openssl/crypto/asn1/p8_pkey.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1999-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/asn1t.h>
13
#include <openssl/x509.h>
14
#include "internal/x509_int.h"
15
16
/* Minor tweak to operation: zero private key data */
17
static int pkey_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it,
18
                   void *exarg)
19
311k
{
20
311k
    /* Since the structure must still be valid use ASN1_OP_FREE_PRE */
21
311k
    if (operation == ASN1_OP_FREE_PRE) {
22
59.7k
        PKCS8_PRIV_KEY_INFO *key = (PKCS8_PRIV_KEY_INFO *)*pval;
23
59.7k
        if (key->pkey)
24
59.7k
            OPENSSL_cleanse(key->pkey->data, key->pkey->length);
25
59.7k
    }
26
311k
    return 1;
27
311k
}
28
29
ASN1_SEQUENCE_cb(PKCS8_PRIV_KEY_INFO, pkey_cb) = {
30
        ASN1_SIMPLE(PKCS8_PRIV_KEY_INFO, version, ASN1_INTEGER),
31
        ASN1_SIMPLE(PKCS8_PRIV_KEY_INFO, pkeyalg, X509_ALGOR),
32
        ASN1_SIMPLE(PKCS8_PRIV_KEY_INFO, pkey, ASN1_OCTET_STRING),
33
        ASN1_IMP_SET_OF_OPT(PKCS8_PRIV_KEY_INFO, attributes, X509_ATTRIBUTE, 0)
34
} ASN1_SEQUENCE_END_cb(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO)
35
36
IMPLEMENT_ASN1_FUNCTIONS(PKCS8_PRIV_KEY_INFO)
37
38
int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj,
39
                    int version,
40
                    int ptype, void *pval, unsigned char *penc, int penclen)
41
0
{
42
0
    if (version >= 0) {
43
0
        if (!ASN1_INTEGER_set(priv->version, version))
44
0
            return 0;
45
0
    }
46
0
    if (!X509_ALGOR_set0(priv->pkeyalg, aobj, ptype, pval))
47
0
        return 0;
48
0
    if (penc)
49
0
        ASN1_STRING_set0(priv->pkey, penc, penclen);
50
0
    return 1;
51
0
}
52
53
int PKCS8_pkey_get0(const ASN1_OBJECT **ppkalg,
54
                    const unsigned char **pk, int *ppklen,
55
                    const X509_ALGOR **pa, const PKCS8_PRIV_KEY_INFO *p8)
56
12.9k
{
57
12.9k
    if (ppkalg)
58
12.8k
        *ppkalg = p8->pkeyalg->algorithm;
59
12.9k
    if (pk) {
60
17
        *pk = ASN1_STRING_get0_data(p8->pkey);
61
17
        *ppklen = ASN1_STRING_length(p8->pkey);
62
17
    }
63
12.9k
    if (pa)
64
17
        *pa = p8->pkeyalg;
65
12.9k
    return 1;
66
12.9k
}
67
68
const STACK_OF(X509_ATTRIBUTE) *
69
PKCS8_pkey_get0_attrs(const PKCS8_PRIV_KEY_INFO *p8)
70
0
{
71
0
    return p8->attributes;
72
0
}
73
74
int PKCS8_pkey_add1_attr_by_NID(PKCS8_PRIV_KEY_INFO *p8, int nid, int type,
75
                                const unsigned char *bytes, int len)
76
0
{
77
0
    if (X509at_add1_attr_by_NID(&p8->attributes, nid, type, bytes, len) != NULL)
78
0
        return 1;
79
0
    return 0;
80
0
}