/* SPDX-License-Identifier: GPL-2.0 */ /* * Software async multibuffer crypto daemon headers * * Author: * Tim Chen <tim.c.chen@linux.intel.com> * * Copyright (c) 2014, Intel Corporation. */ #ifndef _CRYPTO_MCRYPT_H #define _CRYPTO_MCRYPT_H #include <linux/crypto.h> #include <linux/kernel.h> #include <crypto/hash.h> struct mcryptd_ahash { struct crypto_ahash base; };
static inline struct mcryptd_ahash *__mcryptd_ahash_cast( struct crypto_ahash *tfm) { return (struct mcryptd_ahash *)tfm; }Contributors
| Person | Tokens | Prop | Commits | CommitProp |
| Tim Chen | 22 | 100.00% | 1 | 100.00% |
| Total | 22 | 100.00% | 1 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| Tim Chen | 44 | 100.00% | 1 | 100.00% |
| Total | 44 | 100.00% | 1 | 100.00% |
| Person | Tokens | Prop | Commits | CommitProp |
| Tim Chen | 343 | 97.17% | 1 | 25.00% |
| Megha Dey | 6 | 1.70% | 1 | 25.00% |
| Sebastian Andrzej Siewior | 3 | 0.85% | 1 | 25.00% |
| Greg Kroah-Hartman | 1 | 0.28% | 1 | 25.00% |
| Total | 353 | 100.00% | 4 | 100.00% |