#include <linux/crypto.h>
#include <linux/list.h>
#include <linux/kernel.h>
#include <linux/skbuff.h>
Go to the source code of this file.
|
void | crypto_mod_put (struct crypto_alg *alg) |
|
int | crypto_register_template (struct crypto_template *tmpl) |
|
void | crypto_unregister_template (struct crypto_template *tmpl) |
|
struct crypto_template * | crypto_lookup_template (const char *name) |
|
int | crypto_register_instance (struct crypto_template *tmpl, struct crypto_instance *inst) |
|
int | crypto_unregister_instance (struct crypto_alg *alg) |
|
int | crypto_init_spawn (struct crypto_spawn *spawn, struct crypto_alg *alg, struct crypto_instance *inst, u32 mask) |
|
int | crypto_init_spawn2 (struct crypto_spawn *spawn, struct crypto_alg *alg, struct crypto_instance *inst, const struct crypto_type *frontend) |
|
void | crypto_drop_spawn (struct crypto_spawn *spawn) |
|
struct crypto_tfm * | crypto_spawn_tfm (struct crypto_spawn *spawn, u32 type, u32 mask) |
|
void * | crypto_spawn_tfm2 (struct crypto_spawn *spawn) |
|
struct crypto_attr_type * | crypto_get_attr_type (struct rtattr **tb) |
|
int | crypto_check_attr_type (struct rtattr **tb, u32 type) |
|
const char * | crypto_attr_alg_name (struct rtattr *rta) |
|
struct crypto_alg * | crypto_attr_alg2 (struct rtattr *rta, const struct crypto_type *frontend, u32 type, u32 mask) |
|
int | crypto_attr_u32 (struct rtattr *rta, u32 *num) |
|
void * | crypto_alloc_instance2 (const char *name, struct crypto_alg *alg, unsigned int head) |
|
struct crypto_instance * | crypto_alloc_instance (const char *name, struct crypto_alg *alg) |
|
void | crypto_init_queue (struct crypto_queue *queue, unsigned int max_qlen) |
|
int | crypto_enqueue_request (struct crypto_queue *queue, struct crypto_async_request *request) |
|
void * | __crypto_dequeue_request (struct crypto_queue *queue, unsigned int offset) |
|
struct crypto_async_request * | crypto_dequeue_request (struct crypto_queue *queue) |
|
int | crypto_tfm_in_queue (struct crypto_queue *queue, struct crypto_tfm *tfm) |
|
void | crypto_inc (u8 *a, unsigned int size) |
|
void | crypto_xor (u8 *dst, const u8 *src, unsigned int size) |
|
int | blkcipher_walk_done (struct blkcipher_desc *desc, struct blkcipher_walk *walk, int err) |
|
int | blkcipher_walk_virt (struct blkcipher_desc *desc, struct blkcipher_walk *walk) |
|
int | blkcipher_walk_phys (struct blkcipher_desc *desc, struct blkcipher_walk *walk) |
|
int | blkcipher_walk_virt_block (struct blkcipher_desc *desc, struct blkcipher_walk *walk, unsigned int blocksize) |
|
int | ablkcipher_walk_done (struct ablkcipher_request *req, struct ablkcipher_walk *walk, int err) |
|
int | ablkcipher_walk_phys (struct ablkcipher_request *req, struct ablkcipher_walk *walk) |
|
void | __ablkcipher_walk_complete (struct ablkcipher_walk *walk) |
|
void crypto_inc |
( |
u8 * |
a, |
|
|
unsigned int |
size |
|
) |
| |
Definition at line 49 of file api.c.