Lines Matching defs:algo
42 int hash_init(enum hash_algo algo, void **ctx)
47 glbl_ctx.algo = algo;
64 int hash_update(enum hash_algo algo, void *context, void *data_ptr,
76 if (ctx->algo != algo) {
77 ERROR("ctx for algo not correct\n");
111 int hash_final(enum hash_algo algo, void *context, void *hash_ptr,
123 if (ctx->algo != algo) {
124 ERROR("ctx for algo not correct\n");