]> git.ipfire.org Git - thirdparty/openssl.git/blame - providers/implementations/macs/blake2s_mac.c
Update copyright year
[thirdparty/openssl.git] / providers / implementations / macs / blake2s_mac.c
CommitLineData
55a0a117 1/*
eec0ad10 2 * Copyright 2018-2020 The OpenSSL Project Authors. All Rights Reserved.
55a0a117
RL
3 *
4 * Licensed under the Apache License 2.0 (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
55a0a117 10/* Constants */
7f6b035b
MC
11#define BLAKE2_CTX BLAKE2S_CTX
12#define BLAKE2_PARAM BLAKE2S_PARAM
13#define BLAKE2_KEYBYTES BLAKE2S_KEYBYTES
14#define BLAKE2_OUTBYTES BLAKE2S_OUTBYTES
15#define BLAKE2_PERSONALBYTES BLAKE2S_PERSONALBYTES
16#define BLAKE2_SALTBYTES BLAKE2S_SALTBYTES
55a0a117
RL
17
18/* Function names */
7f6b035b
MC
19#define BLAKE2_PARAM_INIT blake2s_param_init
20#define BLAKE2_INIT_KEY blake2s_init_key
21#define BLAKE2_UPDATE blake2s_update
22#define BLAKE2_FINAL blake2s_final
23#define BLAKE2_PARAM_SET_DIGEST_LENGTH blake2s_param_set_digest_length
24#define BLAKE2_PARAM_SET_KEY_LENGTH blake2s_param_set_key_length
25#define BLAKE2_PARAM_SET_PERSONAL blake2s_param_set_personal
26#define BLAKE2_PARAM_SET_SALT blake2s_param_set_salt
55a0a117
RL
27
28/* OSSL_DISPATCH symbol */
1be63951 29#define BLAKE2_FUNCTIONS ossl_blake2smac_functions
55a0a117 30
7f6b035b 31#include "blake2_mac_impl.c"