Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 12 lines 212 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Common values for the GHASH hash function 4 */ 5 6#ifndef __CRYPTO_GHASH_H__ 7#define __CRYPTO_GHASH_H__ 8 9#define GHASH_BLOCK_SIZE 16 10#define GHASH_DIGEST_SIZE 16 11 12#endif