2 * Copyright 2007-2018 The OpenSSL Project Authors. All Rights Reserved.
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
11 #include "internal/cryptlib.h"
12 #include <openssl/evp.h>
13 #include "internal/asn1_int.h"
14 #include "internal/evp_int.h"
17 * HMAC "ASN1" method. This is just here to indicate the maximum HMAC output
18 * length and to free up an HMAC key.
21 static int hmac_size(const EVP_PKEY
*pkey
)
23 return EVP_MAX_MD_SIZE
;
26 static void hmac_key_free(EVP_PKEY
*pkey
)
28 ASN1_OCTET_STRING
*os
= EVP_PKEY_get0(pkey
);
31 OPENSSL_cleanse(os
->data
, os
->length
);
32 ASN1_OCTET_STRING_free(os
);
36 static int hmac_pkey_ctrl(EVP_PKEY
*pkey
, int op
, long arg1
, void *arg2
)
39 case ASN1_PKEY_CTRL_DEFAULT_MD_NID
:
40 *(int *)arg2
= NID_sha256
;
48 static int hmac_pkey_public_cmp(const EVP_PKEY
*a
, const EVP_PKEY
*b
)
50 return ASN1_OCTET_STRING_cmp(EVP_PKEY_get0(a
), EVP_PKEY_get0(b
));
53 static int hmac_set_priv_key(EVP_PKEY
*pkey
, const unsigned char *priv
,
56 ASN1_OCTET_STRING
*os
;
58 if (pkey
->pkey
.ptr
!= NULL
)
61 os
= ASN1_OCTET_STRING_new();
66 if (!ASN1_OCTET_STRING_set(os
, priv
, len
)) {
67 ASN1_OCTET_STRING_free(os
);
75 const EVP_PKEY_ASN1_METHOD hmac_asn1_meth
= {
81 "OpenSSL HMAC method",
83 0, 0, hmac_pkey_public_cmp
, 0,