MCPcopy Create free account
hub / github.com/F-Stack/f-stack / blake2b_applicator

Function blake2b_applicator

freebsd/crypto/blake2/blake2_cryptodev.c:307–316  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

305}
306
307static int
308blake2b_applicator(void *state, const void *buf, u_int len)
309{
310 int rc;
311
312 rc = blake2b_update(state, buf, len);
313 if (rc != 0)
314 return (EINVAL);
315 return (0);
316}
317
318static int
319blake2s_applicator(void *state, const void *buf, u_int len)

Callers

nothing calls this directly

Calls 1

blake2b_updateFunction · 0.50

Tested by

no test coverage detected