Go to the source code of this file.
|
struct crypto_ahash * | crypto_alloc_ahash (const char *alg_name, u32 type, u32 mask) |
|
int | crypto_ahash_setkey (struct crypto_ahash *tfm, const u8 *key, unsigned int keylen) |
|
int | crypto_ahash_finup (struct ahash_request *req) |
|
int | crypto_ahash_final (struct ahash_request *req) |
|
int | crypto_ahash_digest (struct ahash_request *req) |
|
struct crypto_shash * | crypto_alloc_shash (const char *alg_name, u32 type, u32 mask) |
|
int | crypto_shash_setkey (struct crypto_shash *tfm, const u8 *key, unsigned int keylen) |
|
int | crypto_shash_digest (struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) |
|
int | crypto_shash_update (struct shash_desc *desc, const u8 *data, unsigned int len) |
|
int | crypto_shash_final (struct shash_desc *desc, u8 *out) |
|
int | crypto_shash_finup (struct shash_desc *desc, const u8 *data, unsigned int len, u8 *out) |
|