forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crypto: ghash-generic - move common definitions to a new header file
Move common values and types used by ghash-generic to a new header file so drivers can directly use ghash-generic as a fallback implementation. Fixes: cc333cd ("crypto: vmx - Adding GHASH routines for VMX module") Cc: [email protected] Signed-off-by: Marcelo Cerri <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
- Loading branch information
1 parent
0cf43f5
commit a397ba8
Showing
2 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Common values for GHASH algorithms | ||
*/ | ||
|
||
#ifndef __CRYPTO_GHASH_H__ | ||
#define __CRYPTO_GHASH_H__ | ||
|
||
#include <linux/types.h> | ||
#include <crypto/gf128mul.h> | ||
|
||
#define GHASH_BLOCK_SIZE 16 | ||
#define GHASH_DIGEST_SIZE 16 | ||
|
||
struct ghash_ctx { | ||
struct gf128mul_4k *gf128; | ||
}; | ||
|
||
struct ghash_desc_ctx { | ||
u8 buffer[GHASH_BLOCK_SIZE]; | ||
u32 bytes; | ||
}; | ||
|
||
#endif |