Searched defs:shash_alg (Results 1 – 1 of 1) sorted by relevance
/linux/include/crypto/ |
H A D | hash.h | 237 struct shash_alg { struct 238 int (*init)(struct shash_desc *desc); 239 int (*update)(struct shash_desc *desc, const u8 *data, 241 int (*final)(struct shash_desc *desc, u8 *out); 242 int (*finup)(struct shash_desc *desc, const u8 *data, 244 int (*digest)(struct shash_desc *desc, const u8 *data, 246 int (*export)(struct shash_desc *desc, void *out); 247 int (*import)(struct shash_desc *desc, const void *in); 248 int (*export_core)(struct shash_desc *desc, void *out); 249 int (*import_core)(struct shash_desc *desc, const void *in); [all …]
|