Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/include/crypto/polyval.h
26278 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Common values for the Polyval hash algorithm
4
*
5
* Copyright 2021 Google LLC
6
*/
7
8
#ifndef _CRYPTO_POLYVAL_H
9
#define _CRYPTO_POLYVAL_H
10
11
#define POLYVAL_BLOCK_SIZE 16
12
#define POLYVAL_DIGEST_SIZE 16
13
14
#endif
15
16