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 v4.6-rc7 14 lines 373 B view raw
1#ifndef _CRYPTO_SHA256_GLUE_H 2#define _CRYPTO_SHA256_GLUE_H 3 4#include <linux/crypto.h> 5 6extern struct shash_alg sha256_neon_algs[2]; 7 8int crypto_sha256_arm_update(struct shash_desc *desc, const u8 *data, 9 unsigned int len); 10 11int crypto_sha256_arm_finup(struct shash_desc *desc, const u8 *data, 12 unsigned int len, u8 *hash); 13 14#endif /* _CRYPTO_SHA256_GLUE_H */