Coverage Report

Created: 2018-08-29 13:53

/src/openssl/crypto/hmac/hm_ameth.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2007-2018 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/evp.h>
13
#include "internal/asn1_int.h"
14
#include "internal/evp_int.h"
15
16
/*
17
 * HMAC "ASN1" method. This is just here to indicate the maximum HMAC output
18
 * length and to free up an HMAC key.
19
 */
20
21
static int hmac_size(const EVP_PKEY *pkey)
22
0
{
23
0
    return EVP_MAX_MD_SIZE;
24
0
}
25
26
static void hmac_key_free(EVP_PKEY *pkey)
27
0
{
28
0
    ASN1_OCTET_STRING *os = EVP_PKEY_get0(pkey);
29
0
    if (os) {
30
0
        if (os->data)
31
0
            OPENSSL_cleanse(os->data, os->length);
32
0
        ASN1_OCTET_STRING_free(os);
33
0
    }
34
0
}
35
36
static int hmac_pkey_ctrl(EVP_PKEY *pkey, int op, long arg1, void *arg2)
37
0
{
38
0
    switch (op) {
39
0
    case ASN1_PKEY_CTRL_DEFAULT_MD_NID:
40
0
        *(int *)arg2 = NID_sha256;
41
0
        return 1;
42
0
43
0
    default:
44
0
        return -2;
45
0
    }
46
0
}
47
48
static int hmac_pkey_public_cmp(const EVP_PKEY *a, const EVP_PKEY *b)
49
0
{
50
0
    return ASN1_OCTET_STRING_cmp(EVP_PKEY_get0(a), EVP_PKEY_get0(b));
51
0
}
52
53
static int hmac_set_priv_key(EVP_PKEY *pkey, const unsigned char *priv,
54
                             size_t len)
55
0
{
56
0
    ASN1_OCTET_STRING *os;
57
0
58
0
    if (pkey->pkey.ptr != NULL)
59
0
        return 0;
60
0
61
0
    os = ASN1_OCTET_STRING_new();
62
0
    if (os == NULL)
63
0
        return 0;
64
0
65
0
66
0
    if (!ASN1_OCTET_STRING_set(os, priv, len)) {
67
0
        ASN1_OCTET_STRING_free(os);
68
0
        return 0;
69
0
    }
70
0
71
0
    pkey->pkey.ptr = os;
72
0
    return 1;
73
0
}
74
75
static int hmac_get_priv_key(const EVP_PKEY *pkey, unsigned char *priv,
76
                             size_t *len)
77
0
{
78
0
    ASN1_OCTET_STRING *os = (ASN1_OCTET_STRING *)pkey->pkey.ptr;
79
0
80
0
    if (priv == NULL) {
81
0
        *len = ASN1_STRING_length(os);
82
0
        return 1;
83
0
    }
84
0
85
0
    if (os == NULL || *len < (size_t)ASN1_STRING_length(os))
86
0
        return 0;
87
0
88
0
    *len = ASN1_STRING_length(os);
89
0
    memcpy(priv, ASN1_STRING_get0_data(os), *len);
90
0
91
0
    return 1;
92
0
}
93
94
const EVP_PKEY_ASN1_METHOD hmac_asn1_meth = {
95
    EVP_PKEY_HMAC,
96
    EVP_PKEY_HMAC,
97
    0,
98
99
    "HMAC",
100
    "OpenSSL HMAC method",
101
102
    0, 0, hmac_pkey_public_cmp, 0,
103
104
    0, 0, 0,
105
106
    hmac_size,
107
    0, 0,
108
    0, 0, 0, 0, 0, 0, 0,
109
110
    hmac_key_free,
111
    hmac_pkey_ctrl,
112
    NULL,
113
    NULL,
114
115
    NULL,
116
    NULL,
117
    NULL,
118
119
    NULL,
120
    NULL,
121
    NULL,
122
123
    hmac_set_priv_key,
124
    NULL,
125
    hmac_get_priv_key,
126
    NULL,
127
};